File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 11
11
strategy :
12
12
fail-fast : true
13
13
matrix :
14
- php : [7.4, 8.0]
15
- laravel : [^8.0]
14
+ php : [7.4, '8.0', 8.1]
15
+ laravel : [8, 9]
16
+ exclude :
17
+ - php : 7.4
18
+ laravel : 9
16
19
17
20
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
18
21
30
33
31
34
- name : Install dependencies
32
35
run : |
33
- composer require "illuminate/contracts=${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update
34
- composer update --prefer-dist --no-interaction --no-progress --dev
36
+ composer require "illuminate/contracts=^${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update
37
+ composer update --prefer-dist --no-interaction --no-progress
38
+
35
39
- name : Execute tests
36
40
run : vendor/bin/phpunit --verbose
Original file line number Diff line number Diff line change 16
16
],
17
17
"require" : {
18
18
"php" : " ^7.4|^8.0" ,
19
- "blade-ui-kit/blade-icons" : " ^1.0 " ,
20
- "illuminate/support" : " ^8.0"
19
+ "blade-ui-kit/blade-icons" : " ^1.1 " ,
20
+ "illuminate/support" : " ^8.0|^9.0 "
21
21
},
22
22
"require-dev" : {
23
- "codeat3/phpcs-styles" : " dev-main " ,
24
- "orchestra/testbench" : " ^6.0" ,
23
+ "codeat3/phpcs-styles" : " ^1.0 " ,
24
+ "orchestra/testbench" : " ^6.0|^7.0 " ,
25
25
"phpunit/phpunit" : " ^9.0"
26
26
},
27
27
"autoload" : {
You can’t perform that action at this time.
0 commit comments