Skip to content

Commit db4fe69

Browse files
authored
Laravel 12 support (#21)
1 parent c3b3c2e commit db4fe69

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
matrix:
1313
laravel: [ 9.*, 10.*, 11.* ]
1414
php: [ 8.0, 8.1, 8.2, 8.3 ]
15+
include:
16+
- laravel: 12.*
17+
php: 8.3
18+
- laravel: 12.*
19+
php: 8.4
1520
exclude:
1621
- laravel: 9.*
1722
php: 8.2
@@ -42,4 +47,3 @@ jobs:
4247
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
4348
- name: Run tests
4449
run: ./vendor/bin/phpunit
45-

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"ext-json": "*",
1515
"guzzlehttp/guzzle": "^6.2 || ^7.0",
1616
"guzzlehttp/psr7": "^1.0 || ^2.0",
17-
"laravel/framework": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
17+
"laravel/framework": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
1818
},
1919
"require-dev": {
2020
"mockery/mockery": "^1.3.1",
21-
"orchestra/testbench": "^3.5 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
22-
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.0 || ^10.0"
21+
"orchestra/testbench": "^3.5 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
22+
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
2323
},
2424
"autoload": {
2525
"psr-4": {

0 commit comments

Comments
 (0)