File tree Expand file tree Collapse file tree 3 files changed +1881
-2511
lines changed Expand file tree Collapse file tree 3 files changed +1881
-2511
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ${{ matrix.os }}
9
9
strategy :
10
10
matrix :
11
- php : [8.1]
11
+ php : [8.1, 8.2 ]
12
12
stability : [prefer-lowest, prefer-stable]
13
13
os : [ubuntu-latest]
14
14
15
15
name : P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}
16
16
17
17
steps :
18
18
- name : Checkout code
19
- uses : actions/checkout@v2
19
+ uses : actions/checkout@v3
20
20
21
21
- name : Cache dependencies
22
- uses : actions/cache@v1
22
+ uses : actions/cache@v3
23
23
with :
24
24
path : ~/.composer/cache/files
25
25
key : dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
29
29
with :
30
30
php-version : ${{ matrix.php }}
31
31
extensions : pdo, sqlite, pdo_sqlite
32
- tools : composer:v2
33
- coverage : none
34
32
35
33
- name : Install dependencies
36
34
run : composer update --${{ matrix.stability }} --prefer-dist --no-interaction
Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "php" : " ^ 8.1" ,
13
+ "php" : " ~ 8.1.0 || ~8.2.0 " ,
14
14
"illuminate/database" : " ^10.0" ,
15
15
"illuminate/http" : " ^10.0" ,
16
16
"illuminate/support" : " ^10.0" ,
20
20
"doctrine/dbal" : " ^3.5" ,
21
21
"ergebnis/composer-normalize" : " ^2.29" ,
22
22
"mockery/mockery" : " ^1.4.4" ,
23
- "nunomaduro/larastan" : " ^2.4 " ,
23
+ "nunomaduro/larastan" : " ^2.5.1 " ,
24
24
"orchestra/testbench" : " ^8.0" ,
25
- "phpunit/phpunit" : " ^9.5.10 " ,
25
+ "phpunit/phpunit" : " ^10.0 " ,
26
26
"roave/security-advisories" : " dev-latest"
27
27
},
28
28
"minimum-stability" : " dev" ,
You can’t perform that action at this time.
0 commit comments