Skip to content

Commit 818d723

Browse files
authored
Laravel 11 support (#4)
* drop L9, add L11 support * fix composer.json syntax
1 parent 8fd1e7d commit 818d723

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,14 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
laravel: [9, 10]
19+
laravel: [10, 11]
2020

2121
steps:
2222
- uses: actions/checkout@v2
23+
- name: Setup PHP
24+
uses: shivammathur/setup-php@v2
25+
with:
26+
php-version: '8.2'
2327
- name: Install composer dependencies
2428
run: composer require "illuminate/support:^${{ matrix.laravel }}.0"
2529
- name: Run tests

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,13 @@
1818
}
1919
},
2020
"require": {
21-
"php": "^8.1",
22-
"illuminate/support": "^9.0|^10.0",
23-
"archtechx/enums": "^0.3.2"
21+
"php": "^8.2",
22+
"illuminate/support": "^10.0|^11.0"
2423
},
2524
"require-dev": {
26-
"orchestra/testbench": "^7.0|^8.0",
27-
"pestphp/pest": "^1.2|^2.0",
28-
"pestphp/pest-plugin-laravel": "^1.0|^2.0"
25+
"orchestra/testbench": "^8.0|^9.0",
26+
"pestphp/pest": "^2.0",
27+
"pestphp/pest-plugin-laravel": "^2.0"
2928
},
3029
"minimum-stability": "dev",
3130
"prefer-stable": true,

0 commit comments

Comments
 (0)