Skip to content

Commit

Permalink
🔧 support laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
willpower232 committed Mar 13, 2024
1 parent 84e8bc8 commit 47e0d04
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -8,11 +8,14 @@ jobs:
strategy:
fail-fast: false
matrix:
laravel: [8, 9, 10]
laravel: [8, 9, 10, 11]
php: [8.1, 8.2, 8.3]
exclude:
- php: 8.1
laravel: 11

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: test against Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }}
run: docker build . --build-arg PHP_VERSION=${{ matrix.php }} --build-arg LARAVEL=${{ matrix.laravel }}
14 changes: 7 additions & 7 deletions composer.json
Expand Up @@ -6,16 +6,16 @@
"license": "MIT",
"require": {
"php": "^8.0",
"illuminate/database": "^8.43|^9.0|^10.0",
"illuminate/support": "^8.43|^9.0|^10.0",
"illuminate/collections": "^8.43|^9.0|^10.0",
"illuminate/config": "^8.43|^9.0|^10.0",
"illuminate/cache": "^8.43|^9.0|^10.0",
"symfony/console": "^5.3|^6.0"
"illuminate/database": "^8.43|^9.0|^10.0|^11.0",
"illuminate/support": "^8.43|^9.0|^10.0|^11.0",
"illuminate/collections": "^8.43|^9.0|^10.0|^11.0",
"illuminate/config": "^8.43|^9.0|^10.0|^11.0",
"illuminate/cache": "^8.43|^9.0|^10.0|^11.0",
"symfony/console": "^5.3|^6.0|^7.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^10.0"
},
"autoload-dev": {
Expand Down

0 comments on commit 47e0d04

Please sign in to comment.