Skip to content
Merged
15 changes: 13 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,27 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest ]
php: [ 8.2, 8.1 ]
laravel: [ 10.*, 9.*, 8.* ]
php: [ 8.3, 8.2, 8.1 ]
laravel: [ 12.*, 11.*, 10.*, 9.*, 8.* ]
stability: [ prefer-stable ]
include:
- laravel: 12.*
testbench: 10.*
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
exclude:
- laravel: 12.*
php: 8.2
- laravel: 12.*
php: 8.1
- laravel: 11.*
php: 8.1

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ Please review [our security policy](../../security/policy) on how to report secu

## Credits

- [Martin](https://github.com/io238)
- [io238](https://github.com/io238)
- [azakhozhiy](https://github.com/azakhozhiy)
- https://restcountries.com
- https://github.com/umpirsky/country-list
- https://github.com/umpirsky/language-list
Expand Down
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "io238/laravel-iso-countries",
"version": "1.3.0",
"description": "Ready-to-use Laravel models and relations for country (ISO 3166), language (ISO 639-1), and currency (ISO 4217) information with multi-language support.",
"keywords": [
"laravel",
Expand Down Expand Up @@ -30,9 +31,9 @@
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^7.0|^8.40|^9.0|^10.0",
"illuminate/database": "^7.0|^8.40|^9.0|^10.0",
"illuminate/support": "^7.0|^8.40|^9.0|^10.0",
"illuminate/contracts": "^7.0|^8.40|^9.0|^10.0|^11.0|^12.0",
"illuminate/database": "^7.0|^8.40|^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^7.0|^8.40|^9.0|^10.0|^11.0|^12.0",
"spatie/laravel-translatable": "^4.6|^5.0|^6.0",
"slowprog/composer-copy-file": "^0.3",
"components/flag-icon-css": "^3.5.0",
Expand All @@ -41,8 +42,8 @@
"umpirsky/currency-list": "^v1.1.1"
},
"require-dev": {
"orchestra/testbench": "^5.0|^6.0|^7.0",
"pestphp/pest": "^1.21"
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"pestphp/pest": "^1.0|^2.0|^3.0"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -82,6 +83,6 @@
"./vendor/umpirsky/currency-list/data/#\\.php$": "data/translations/currencies/"
}
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"prefer-stable": true
}
Loading