Skip to content

Commit

Permalink
Develop (#26)
Browse files Browse the repository at this point in the history
* Update PHP CS Fixer config and remove changelog workflow

* Add dry-run option to PHP CS Fixer workflow

* Update Laravel versions in CI and composer

* Update GitHub Actions test matrix

* Update Testbench versions for Laravel 9 & 11

* Update collision version constraints

* Set lower bounds of versions for required packages (compatibility)

---------

Co-authored-by: tvup <[email protected]>
  • Loading branch information
tvup and tvup authored Jul 27, 2024
1 parent 2da0834 commit 2e78edf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2]
laravel: [10.*]
laravel: [9.*,10.*,11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@
}
],
"require": {
"php": "*",
"laravel/framework": "^9|^10|^11",
"php": ">=8.2 <8.3",
"laravel/framework": "^9.47|^10|^11",
"nesbot/carbon": "^2|^3",
"spatie/laravel-package-tools": "^1.16"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.35",
"nunomaduro/collision": "^7|^8",
"nunomaduro/collision": "^6|^7|^8",
"nunomaduro/larastan": "^2.6",
"orchestra/testbench": "^7|^8|^9",
"pestphp/pest": "^1|^2|^3",
"pestphp/pest-plugin-laravel": "^1|^2|^3",
"pestphp/pest": "^1.22.1|^2|^3",
"pestphp/pest-plugin-laravel": "^1.4|^2|^3",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9|^10|^11",
"spatie/laravel-ray": "^1.33"
Expand Down

0 comments on commit 2e78edf

Please sign in to comment.