File tree Expand file tree Collapse file tree 5 files changed +19
-12
lines changed Expand file tree Collapse file tree 5 files changed +19
-12
lines changed Original file line number Diff line number Diff line change 21
21
coverage : xdebug
22
22
23
23
- name : Cache composer dependencies
24
- uses : actions/cache@v2
24
+ uses : actions/cache@v4
25
25
with :
26
26
path : vendor
27
27
key : composer-${{ hashFiles('composer.lock') }}
Original file line number Diff line number Diff line change 11
11
name : " Running Larastan check"
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v2
14
+ - uses : actions/checkout@v4
15
15
16
16
- name : Setup PHP
17
17
uses : shivammathur/setup-php@v2
21
21
coverage : none
22
22
23
23
- name : Cache composer dependencies
24
- uses : actions/cache@v2
24
+ uses : actions/cache@v4
25
25
with :
26
26
path : vendor
27
27
key : composer-${{ hashFiles('composer.lock') }}
Original file line number Diff line number Diff line change 11
11
name : " Running Laravel Pint"
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v2
14
+ - uses : actions/checkout@v4
15
15
16
16
- name : Setup PHP
17
17
uses : shivammathur/setup-php@v2
21
21
coverage : none
22
22
23
23
- name : Cache composer dependencies
24
- uses : actions/cache@v2
24
+ uses : actions/cache@v4
25
25
with :
26
26
path : vendor
27
27
key : composer-${{ hashFiles('composer.lock') }}
Original file line number Diff line number Diff line change @@ -14,16 +14,23 @@ jobs:
14
14
matrix :
15
15
os : [ubuntu-latest]
16
16
php : [8.1, 8.2, 8.3, 8.4]
17
- laravel : ['10.*', '11.*']
17
+ laravel : ['10.*', '11.*', '12.*' ]
18
18
stability : [prefer-lowest, prefer-stable]
19
19
include :
20
20
- laravel : 10.*
21
21
testbench : 8.*
22
+ carbon : ^2.72.2
22
23
- laravel : 11.*
23
24
testbench : 9.*
25
+ carbon : ^2.72.2
26
+ - laravel : 12.*
27
+ testbench : 10.*
28
+ carbon : ^3.8.4
24
29
exclude :
25
30
- laravel : 11.*
26
31
php : 8.1
32
+ - laravel : 12.*
33
+ php : 8.1
27
34
28
35
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
29
36
45
52
46
53
- name : Install dependencies
47
54
run : |
48
- composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.64.1 " --no-interaction --no-update
55
+ composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon: ${{matrix.carbon }} " --no-interaction --no-update
49
56
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
50
57
51
58
- name : Execute tests
Original file line number Diff line number Diff line change 17
17
],
18
18
"require" : {
19
19
"php" : " ^8.1" ,
20
- "illuminate/contracts" : " ^10.0|^11.0" ,
20
+ "illuminate/contracts" : " ^10.0|^11.0|^12.0 " ,
21
21
"spatie/laravel-package-tools" : " ^1.13"
22
22
},
23
23
"require-dev" : {
24
24
"brianium/paratest" : " ^6.3|^7.4" ,
25
- "infection/infection" : " ^0.27.3" ,
26
- "larastan/larastan" : " ^2.0" ,
25
+ "infection/infection" : " ^0.27.3|^0.29.14 " ,
26
+ "larastan/larastan" : " ^2.0|^3.0 " ,
27
27
"laravel/pint" : " ^1.0" ,
28
28
"nunomaduro/collision" : " ^7.0|^8.0" ,
29
- "orchestra/testbench" : " ^8.0|^9.0" ,
30
- "phpunit/phpunit" : " ^9.5|^10.5"
29
+ "orchestra/testbench" : " ^8.0|^9.0|^10.0 " ,
30
+ "phpunit/phpunit" : " ^9.5|^10.5|^11.0 "
31
31
},
32
32
"autoload" : {
33
33
"psr-4" : {
You can’t perform that action at this time.
0 commit comments