Skip to content

Commit 30aae5e

Browse files
authored
Merge pull request #65 from accessibility-exchange/laravel-12
Adds Laravel 12 support
2 parents e687ad1 + 9c0166f commit 30aae5e

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,20 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
os: [ ubuntu-latest ]
18-
php: [ '8.0', '8.1', '8.2', '8.3' ]
19-
laravel: [ '8.0', '9.33', '10.0', '11.0' ]
18+
php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]
19+
laravel: [ '8.0', '9.33', '10.0', '11.0', '12.0' ]
2020
stability: [ prefer-lowest, prefer-stable ]
2121
exclude:
2222
- php: '8.0'
2323
laravel: '10.0'
2424
- php: '8.0'
2525
laravel: '11.0'
26+
- php: '8.0'
27+
laravel: '12.0'
2628
- php: '8.1'
2729
laravel: '11.0'
30+
- php: '8.1'
31+
laravel: '12.0'
2832
- laravel: '8.0'
2933
stability: prefer-lowest
3034

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414
"require": {
1515
"php": "^7.2.5|^8.0",
1616
"ext-json": "*",
17-
"illuminate/config": "^8.0|^9.0|^10.0|^11.0",
18-
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
19-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
20-
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
17+
"illuminate/config": "^8.0|^9.0|^10.0|^11.0|^12.0",
18+
"illuminate/console": "^8.0|^9.0|^10.0|^11.0|^12.0",
19+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
20+
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
2121
"symfony/finder": "^5.1|^6.0|^7.0"
2222
},
2323
"require-dev": {
2424
"mockery/mockery": "^1.3.3",
25-
"orchestra/testbench": "^6.6|^7.0|^8.0|^9.0",
26-
"phpunit/phpunit": "^9.5|^10.0"
25+
"orchestra/testbench": "^6.6|^7.0|^8.0|^9.0|^10.0",
26+
"phpunit/phpunit": "^9.5|^10.0|^11.0"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)