Skip to content

Commit a463af1

Browse files
committed
Drop 8.0 support. Test on 8.2.
1 parent b76c914 commit a463af1

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup PHP
1515
uses: shivammathur/setup-php@v2
1616
with:
17-
php-version: 8.1
17+
php-version: 8.2
1818

1919
- name: Checkout
2020
uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
operating-system: [ubuntu-latest, windows-latest, macos-latest]
15-
php-versions: ['8.0', '8.1']
15+
php-versions: ['8.1', '8.2']
1616
name: "PHP ${{ matrix.php-versions }} test on ${{ matrix.operating-system }}"
1717
steps:
1818
- name: Setup PHP

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CHANGELOG
44
3.0.0
55
-------------------
66

7-
* IMPORTANT: PHP 8.0 or greater is now required.
7+
* IMPORTANT: PHP 8.1 or greater is now required.
88
* `GeoIp2\WebService\Client` methods now throw an `InvalidArgumentException`
99
if an invalid IP address is passed to them. Previously, they would make
1010
a request to the web service and throw a

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ to the client API, please see
430430

431431
## Requirements ##
432432

433-
This library requires PHP 8.0 or greater.
433+
This library requires PHP 8.1 or greater.
434434

435435
This library also relies on the [MaxMind DB Reader](https://github.com/maxmind/MaxMind-DB-Reader-php).
436436

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
"require": {
1616
"maxmind-db/reader": "~1.8",
1717
"maxmind/web-service-common": "~0.8",
18-
"php": ">=8.0",
18+
"php": ">=8.1",
1919
"ext-json": "*"
2020
},
2121
"require-dev": {
2222
"friendsofphp/php-cs-fixer": "3.*",
23-
"phpunit/phpunit": "^8.0 || ^9.0",
23+
"phpunit/phpunit": "^9.0",
2424
"squizlabs/php_codesniffer": "3.*",
2525
"phpstan/phpstan": "*"
2626
},

0 commit comments

Comments
 (0)