Skip to content

Commit 905fa7c

Browse files
authored
Merge pull request #14 from InteractionDesignFoundation/drop-laravel-8
Drop Laravel 8 support
2 parents b6b4abb + 0f83c13 commit 905fa7c

File tree

4 files changed

+28
-33
lines changed

4 files changed

+28
-33
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
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

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ composer.phar
33
composer.lock
44
auth.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
1011
Thumbs.db
1112
/.idea

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
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).",

phpunit.xml

Lines changed: 19 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
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>

0 commit comments

Comments
 (0)