Skip to content

Commit

Permalink
Merge pull request #65 from accessibility-exchange/laravel-12
Browse files Browse the repository at this point in the history
Adds Laravel 12 support
  • Loading branch information
amiranagram authored Mar 6, 2025
2 parents e687ad1 + 9c0166f commit 30aae5e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,20 @@ jobs:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
php: [ '8.0', '8.1', '8.2', '8.3' ]
laravel: [ '8.0', '9.33', '10.0', '11.0' ]
php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]
laravel: [ '8.0', '9.33', '10.0', '11.0', '12.0' ]
stability: [ prefer-lowest, prefer-stable ]
exclude:
- php: '8.0'
laravel: '10.0'
- php: '8.0'
laravel: '11.0'
- php: '8.0'
laravel: '12.0'
- php: '8.1'
laravel: '11.0'
- php: '8.1'
laravel: '12.0'
- laravel: '8.0'
stability: prefer-lowest

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
"require": {
"php": "^7.2.5|^8.0",
"ext-json": "*",
"illuminate/config": "^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
"illuminate/config": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/console": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
"symfony/finder": "^5.1|^6.0|^7.0"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
"orchestra/testbench": "^6.6|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.0"
"orchestra/testbench": "^6.6|^7.0|^8.0|^9.0|^10.0",
"phpunit/phpunit": "^9.5|^10.0|^11.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 30aae5e

Please sign in to comment.