Skip to content

Commit 587009f

Browse files
authored
Merge pull request #13 from laravel-shift/l9-compatibility
Laravel 9.x Compatibility
2 parents d31a870 + fc772be commit 587009f

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
php: [7.3, 7.4, 8.0]
20+
php: [7.3, 7.4, 8.0, 8.0]
2121
stability: [prefer-lowest, prefer-stable]
2222

2323
# Steps represent a sequence of tasks that will be executed as part of the job

composer.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22
"name": "laravel-validation-rules/country-codes",
33
"description": "Validate country codes.",
44
"type": "library",
5-
"keywords": [ "laravel", "validation", "country" ],
5+
"keywords": [
6+
"laravel",
7+
"validation",
8+
"country"
9+
],
610
"require": {
711
"php": "^7.3|^8.0",
8-
"illuminate/contracts": "^5.5|^6.0|^7.0|^8.0",
9-
"league/iso3166": "^3.0"
12+
"illuminate/contracts": "^5.5|^6.0|^7.0|^8.0|^9.0",
13+
"league/iso3166": "^3.0|^4.0"
1014
},
1115
"require-dev": {
12-
"orchestra/testbench": "^3.5|^4.0|^5.0",
16+
"orchestra/testbench": "^3.5|^4.0|^5.0|^7.0",
1317
"phpunit/phpunit": "^7.0|^8.0|^9.0"
1418
},
1519
"license": "Apache-2.0",

0 commit comments

Comments
 (0)