Skip to content

Commit

Permalink
build: increase stability requirement to stable for Laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasonej committed Mar 13, 2024
1 parent 9def508 commit b293f4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
stability: ["--prefer-lowest", "--prefer-stable", ""]
stability: ["--prefer-lowest", "--prefer-stable"]
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sourcetoad/enhanced-resources",
"description": "Laravel's API Resources enhanced.",
"minimum-stability": "dev",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
Expand All @@ -21,10 +21,10 @@
},
"require": {
"php": "^8.1",
"laravel/framework": "^10.0|^11.0|11.x-dev"
"laravel/framework": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|9.x-dev",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.0|^11.0"
}
}

0 comments on commit b293f4b

Please sign in to comment.