File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,15 @@ jobs:
13
13
fail-fast : true
14
14
matrix :
15
15
php : [8.1, 8.2, 8.3, 8.4]
16
- laravel : [10, 11]
16
+ laravel : [10, 11, 12 ]
17
17
stability : ["prefer-lowest", "prefer-stable"]
18
18
exclude :
19
19
- php : 8.4
20
20
laravel : 10
21
21
- php : 8.1
22
22
laravel : 11
23
+ - php : 8.1
24
+ laravel : 12
23
25
24
26
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} (w/ ${{ matrix.stability }})
25
27
steps :
@@ -52,16 +54,16 @@ jobs:
52
54
max_attempts : 5
53
55
command : |
54
56
composer require nesbot/carbon:^2.62.1 --dev --${{ matrix.stability }} --no-update --no-interaction
55
- if : matrix.php >= 8.2 && matrix.stability == 'prefer-lowest'
57
+ if : matrix.php >= 8.2 && matrix.stability == 'prefer-lowest' && matrix.laravel < 12
56
58
57
59
- name : Set Minimum PHP 8.2 Versions and Laravel > 11
58
60
uses : nick-fields/retry@v3
59
61
with :
60
62
timeout_minutes : 5
61
63
max_attempts : 5
62
64
command : |
63
- composer require orchestra/testbench:^9.2 --dev --${{ matrix.stability }} --no-update --no-interaction
64
- composer require phpunit/phpunit:^10.4 --dev --${{ matrix.stability }} --no-update --no-interaction
65
+ composer require " orchestra/testbench:^9.2|^10.0" --dev --${{ matrix.stability }} --no-update --no-interaction
66
+ composer require " phpunit/phpunit:^10.4|^11.5" --dev --${{ matrix.stability }} --no-update --no-interaction
65
67
if : matrix.php >= 8.2 && matrix.stability == 'prefer-lowest' && matrix.laravel >= 11
66
68
67
69
- name : Set Laravel version
Original file line number Diff line number Diff line change 35
35
},
36
36
"require-dev" : {
37
37
"roave/security-advisories" : " dev-master" ,
38
- "orchestra/testbench" : " ^8.0|^9.2" ,
38
+ "orchestra/testbench" : " ^8.0|^9.2|^10.0 " ,
39
39
"mockery/mockery" : " ^1.3.3" ,
40
- "phpunit/phpunit" : " ^10.4|^11.0 " ,
40
+ "phpunit/phpunit" : " ^10.4|^11.5 " ,
41
41
"laravel/pint" : " ^1.16"
42
42
},
43
43
"suggest" : {
You can’t perform that action at this time.
0 commit comments