File tree Expand file tree Collapse file tree 5 files changed +39
-24
lines changed Expand file tree Collapse file tree 5 files changed +39
-24
lines changed Original file line number Diff line number Diff line change 8
8
9
9
strategy :
10
10
matrix :
11
- php : ['8.0' , 8.1 , 8.2 ]
11
+ php : [8.2 , 8.3 , 8.4 ]
12
12
lib :
13
- - { laravel: ^11.0 }
14
- - { laravel: ^10.0 }
15
- - { laravel: ^9.0 }
13
+ - laravel : ^13.0.x-dev
14
+ - laravel : ^12.0
15
+ - laravel : ^11.0
16
16
exclude :
17
- - { php: 8.0, lib: { laravel: ^10.0 } }
18
- - { php: 8.0, lib: { laravel: ^11.0 } }
19
- - { php: 8.1, lib: { laravel: ^11.0 } }
17
+ - php : 8.2
18
+ lib :
19
+ laravel : ^13.0.x-dev
20
20
21
21
steps :
22
22
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change 18
18
- php-scrutinizer-run
19
19
20
20
environment :
21
- php : ' 8.1.8 '
21
+ php : ' 8.3.17 '
22
22
23
23
dependencies :
24
24
before :
Original file line number Diff line number Diff line change @@ -4,8 +4,11 @@ Guarantee database stickiness over the same user's consecutive requests.
4
4
5
5
## Requirements
6
6
7
- - PHP: ` ^8.0 `
8
- - Laravel: ` ^9.0 || ^10.0 `
7
+ - PHP: ` ^8.2 `
8
+ - Laravel: ` ^11.0 || ^12.0 `
9
+
10
+ > [ !NOTE]
11
+ > Older versions have outdated dependency requirements. If you cannot prepare the latest environment, please refer to past releases.
9
12
10
13
## Installing
11
14
Original file line number Diff line number Diff line change 30
30
}
31
31
},
32
32
"require" : {
33
- "php" : " ^8.0 " ,
33
+ "php" : " ^8.2 " ,
34
34
"ext-pdo" : " *" ,
35
- "illuminate/container" : " ^9 .0 || ^10 .0 || ^11.0 || ^12 .0" ,
36
- "illuminate/contracts" : " ^9 .0 || ^10 .0 || ^11.0 || ^12 .0" ,
37
- "illuminate/database" : " ^9 .0 || ^10 .0 || ^11.0 || ^12 .0" ,
38
- "illuminate/queue" : " ^9 .0 || ^10 .0 || ^11.0 || ^12 .0" ,
39
- "illuminate/support" : " ^9 .0 || ^10 .0 || ^11.0 || ^12 .0"
35
+ "illuminate/container" : " ^11 .0 || ^12 .0 || ^13 .0" ,
36
+ "illuminate/contracts" : " ^11 .0 || ^12 .0 || ^13 .0" ,
37
+ "illuminate/database" : " ^11 .0 || ^12 .0 || ^13 .0" ,
38
+ "illuminate/queue" : " ^11 .0 || ^12 .0 || ^13 .0" ,
39
+ "illuminate/support" : " ^11 .0 || ^12 .0 || ^13 .0"
40
40
},
41
41
"require-dev" : {
42
42
"orchestra/testbench" : " *" ,
43
- "orchestra/testbench-core" : " >=7 .0" ,
44
- "phpunit/phpunit" : " >=9.5 " ,
45
- "mockery/mockery" : " ^1.3.3 || ^1.4.2 "
43
+ "orchestra/testbench-core" : " >=9 .0" ,
44
+ "phpunit/phpunit" : " >=11.0 " ,
45
+ "mockery/mockery" : " ^1.6.12 "
46
46
},
47
47
"minimum-stability" : " dev" ,
48
48
"prefer-stable" : true ,
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false" bootstrap =" vendor/autoload.php" colors =" true" processIsolation =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
- <coverage >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ backupGlobals =" false"
4
+ bootstrap =" vendor/autoload.php"
5
+ colors =" true"
6
+ processIsolation =" false"
7
+ stopOnFailure =" false"
8
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd"
9
+ cacheDirectory =" .phpunit.cache"
10
+ backupStaticProperties =" false" >
11
+
12
+ <source >
4
13
<include >
5
- <directory suffix = " .php " > src</directory >
14
+ <directory >./ src</directory >
6
15
</include >
7
- </coverage >
16
+ </source >
17
+
18
+ <coverage />
19
+
8
20
<testsuites >
9
21
<testsuite name =" Package Test Suite" >
10
- <directory suffix =" Test.php" >./tests/ </directory >
22
+ <directory suffix =" Test.php" >./tests</directory >
11
23
</testsuite >
12
24
</testsuites >
13
25
</phpunit >
You can’t perform that action at this time.
0 commit comments