Skip to content

Commit

Permalink
Support laravel 10-11 and require php 8.1+
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmuscnielsen committed Jan 19, 2024
1 parent 9417324 commit eac1b62
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1]
laravel: [8.*, 9.*]
dependency-version: [prefer-stable] # prefer-lowest,
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: 11.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
}
],
"require": {
"php": "^7.4|8.*",
"illuminate/database": "8.*|9.*",
"illuminate/support": "8.*|9.*"
"php": "^8.1",
"illuminate/database": "10.*|11.*",
"illuminate/support": "10.*|11.*"
},
"require-dev": {
"laravel/laravel": "8.*|9.*",
"makeabledk/laravel-factory-enhanced": "dev-next@dev",
"laravel/laravel": "10.*|11.*",
"makeabledk/laravel-factory-enhanced": "^5.0",
"fakerphp/faker": "^1.19",
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^8.0|^9.0",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5",
"codedungeon/phpunit-result-printer": "^0.32.0"
},
"autoload-dev": {
Expand Down

0 comments on commit eac1b62

Please sign in to comment.