File tree 4 files changed +28
-33
lines changed
4 files changed +28
-33
lines changed Original file line number Diff line number Diff line change 9
9
fail-fast : true
10
10
matrix :
11
11
php : [8.2, 8.1, 8.0]
12
- laravel : [^10.0, ^9.0, ^8.0 ]
12
+ laravel : [^10.0, ^9.0]
13
13
dependencies : [lowest, highest]
14
14
exclude :
15
15
- php : 8.0
Original file line number Diff line number Diff line change @@ -3,9 +3,10 @@ composer.phar
3
3
composer.lock
4
4
auth.json
5
5
6
- phpunit.xml
6
+ . phpunit.cache /
7
7
.phpunit.result.cache
8
8
9
+ # in case a developer don't have global git ignore
9
10
.DS_Store
10
11
Thumbs.db
11
12
/.idea
Original file line number Diff line number Diff line change 13
13
],
14
14
"require" : {
15
15
"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"
19
19
},
20
20
"require-dev" : {
21
- "geoip2/geoip2" : " ~2.1 " ,
21
+ "geoip2/geoip2" : " ^2.11 " ,
22
22
"mockery/mockery" : " ^1.4" ,
23
23
"phpstan/phpstan" : " ^1.2" ,
24
- "phpunit/phpunit" : " ^9.5 || ^10.0" ,
24
+ "phpunit/phpunit" : " ^9.6 || ^10.0" ,
25
25
"squizlabs/php_codesniffer" : " ^3.6" ,
26
26
"vimeo/psalm" : " ^5.7" ,
27
- "vlucas/phpdotenv" : " ^5.0 "
27
+ "vlucas/phpdotenv" : " ^5.4 "
28
28
},
29
29
"suggest" : {
30
30
"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