File tree Expand file tree Collapse file tree 4 files changed +28
-33
lines changed Expand file tree Collapse file tree 4 files changed +28
-33
lines changed Original file line number Diff line number Diff line change 99 fail-fast : true
1010 matrix :
1111 php : [8.2, 8.1, 8.0]
12- laravel : [^10.0, ^9.0, ^8.0 ]
12+ laravel : [^10.0, ^9.0]
1313 dependencies : [lowest, highest]
1414 exclude :
1515 - php : 8.0
Original file line number Diff line number Diff line change @@ -3,9 +3,10 @@ composer.phar
33composer.lock
44auth.json
55
6- phpunit.xml
6+ . phpunit.cache /
77.phpunit.result.cache
88
9+ # in case a developer don't have global git ignore
910.DS_Store
1011Thumbs.db
1112/.idea
Original file line number Diff line number Diff line change 1313 ],
1414 "require" : {
1515 "php" : " ^8.0" ,
16- "illuminate/cache" : " ^8.0 || ^ 9.0 || ^10.0" ,
17- "illuminate/console" : " ^8.0 || ^ 9.0 || ^10.0" ,
18- "illuminate/support" : " ^8.0 || ^ 9.0 || ^10.0"
16+ "illuminate/cache" : " ^9.0 || ^10.0" ,
17+ "illuminate/console" : " ^9.0 || ^10.0" ,
18+ "illuminate/support" : " ^9.0 || ^10.0"
1919 },
2020 "require-dev" : {
21- "geoip2/geoip2" : " ~2.1 " ,
21+ "geoip2/geoip2" : " ^2.11 " ,
2222 "mockery/mockery" : " ^1.4" ,
2323 "phpstan/phpstan" : " ^1.2" ,
24- "phpunit/phpunit" : " ^9.5 || ^10.0" ,
24+ "phpunit/phpunit" : " ^9.6 || ^10.0" ,
2525 "squizlabs/php_codesniffer" : " ^3.6" ,
2626 "vimeo/psalm" : " ^5.7" ,
27- "vlucas/phpdotenv" : " ^5.0 "
27+ "vlucas/phpdotenv" : " ^5.4 "
2828 },
2929 "suggest" : {
3030 "geoip2/geoip2" : " Required to use the MaxMind database or web service with GeoIP (~2.1)." ,
Original file line number Diff line number Diff line change 1- <?xml version =" 1.0" encoding =" UTF-8" ?>
2- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.5/phpunit.xsd"
4- backupGlobals =" false"
5- backupStaticAttributes =" false"
6- bootstrap =" vendor/autoload.php"
7- colors =" true"
8- convertErrorsToExceptions =" true"
9- convertNoticesToExceptions =" true"
10- convertWarningsToExceptions =" true"
11- processIsolation =" false"
12- stopOnFailure =" false"
13- verbose =" true"
14- >
15- <coverage >
16- <include >
17- <directory suffix =" .php" >src/</directory >
18- </include >
19- </coverage >
20- <testsuites >
21- <testsuite name =" GeoIP Package Test Suite" >
22- <directory >./tests</directory >
23- </testsuite >
24- </testsuites >
25- </phpunit >
1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd"
4+ backupGlobals =" false"
5+ bootstrap =" vendor/autoload.php"
6+ colors =" true"
7+ processIsolation =" false"
8+ stopOnFailure =" false" >
9+ <coverage >
10+ <include >
11+ <directory suffix =" .php" >src/</directory >
12+ </include >
13+ </coverage >
14+ <testsuites >
15+ <testsuite name =" GeoIP Package Test Suite" >
16+ <directory >./tests</directory >
17+ </testsuite >
18+ </testsuites >
19+ </phpunit >
You can’t perform that action at this time.
0 commit comments