File tree Expand file tree Collapse file tree 5 files changed +39
-21
lines changed Expand file tree Collapse file tree 5 files changed +39
-21
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : true
16
16
matrix :
17
- php : [8.1 , 8.2 ]
18
- laravel : [9, 10 ]
19
- phpunit : [9 .5, 10 ]
17
+ php : [8.2 , 8.3 ]
18
+ laravel : [10, 11 ]
19
+ phpunit : [10 .5, 11 ]
20
20
21
21
steps :
22
22
- name : Checkout Code
Original file line number Diff line number Diff line change 1
1
vendor /
2
2
composer.lock
3
- .phpunit.result.cache
4
- .phpunit.cache
3
+ .phpunit.cache /
Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file. This project adheres to
4
4
[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
5
5
6
+ ## Unreleased (Laravel 11)
7
+
8
+ ### Changed
9
+
10
+ - ** BREAKING** Package now requires ` illuminate/support ` 10 or 11, dropping support for 9.
11
+ - ** BREAKING** Package now requires PHPUnit 10 or 11, dropping support for 9.
12
+ - Minimum PHP version is now ` 8.2 ` .
13
+
6
14
## [ 5.0.0] - 2023-02-18
7
15
8
16
### Changed
Original file line number Diff line number Diff line change 21
21
}
22
22
],
23
23
"require" : {
24
- "php" : " ^8.1 " ,
24
+ "php" : " ^8.2 " ,
25
25
"ext-json" : " *" ,
26
- "illuminate/contracts" : " ^9 .0|^10 .0" ,
27
- "illuminate/support" : " ^9 .0|^10 .0" ,
28
- "phpunit/phpunit" : " ^9.5.10|^10 .0"
26
+ "illuminate/contracts" : " ^10 .0|^11 .0" ,
27
+ "illuminate/support" : " ^10 .0|^11 .0" ,
28
+ "phpunit/phpunit" : " ^10.5|^11 .0"
29
29
},
30
30
"autoload" : {
31
31
"psr-4" : {
39
39
},
40
40
"extra" : {
41
41
"branch-alias" : {
42
- "dev-develop" : " 5 .x-dev"
42
+ "dev-develop" : " 6 .x-dev"
43
43
}
44
44
},
45
45
"minimum-stability" : " stable" ,
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"
3
- beStrictAboutTestsThatDoNotTestAnything =" true" bootstrap =" vendor/autoload.php" colors =" true"
4
- processIsolation =" false" stopOnError =" false" stopOnFailure =" false"
5
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory =" .phpunit.cache"
6
- backupStaticProperties =" false" >
7
- <coverage >
8
- <include >
9
- <directory suffix =" Test.php" >src/</directory >
10
- </include >
11
- </coverage >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ backupGlobals =" false"
4
+ beStrictAboutTestsThatDoNotTestAnything =" true"
5
+ bootstrap =" vendor/autoload.php"
6
+ colors =" true"
7
+ processIsolation =" false"
8
+ stopOnError =" false"
9
+ stopOnFailure =" false"
10
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.4/phpunit.xsd"
11
+ cacheDirectory =" .phpunit.cache"
12
+ backupStaticProperties =" false"
13
+ failOnWarning =" true"
14
+ failOnDeprecation =" false"
15
+ failOnNotice =" true"
16
+ >
17
+ <coverage />
12
18
<testsuites >
13
19
<testsuite name =" Unit" >
14
20
<directory >./tests/</directory >
17
23
<php >
18
24
<ini name =" error_reporting" value =" E_ALL" />
19
25
</php >
20
- </phpunit >
26
+ <source >
27
+ <include >
28
+ <directory suffix =" .php" >src/</directory >
29
+ </include >
30
+ </source >
31
+ </phpunit >
You can’t perform that action at this time.
0 commit comments