Skip to content

Commit

Permalink
[v2] Drop Support for PHP 8.0 and PHP 8.1 and Laravel 8 and Laravel 9 (
Browse files Browse the repository at this point in the history
…#106)

* Drop PHP 8.0, 8.1 and Laravel 8 and 9 Support

* Upgrade to Pest v2

* Enable prefer-lowest
  • Loading branch information
stefanzweifel authored Dec 29, 2023
1 parent 868cae7 commit de048ce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 23 deletions.
17 changes: 2 additions & 15 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,12 @@ jobs:
max-parallel: 1
matrix:
os: [ubuntu-latest]
php: [8.0, 8.1, 8.2, 8.3]
laravel: [8.*, 9.*, 10.*]
php: [8.2, 8.3]
laravel: [10.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.23
- laravel: 9.*
testbench: ^7.0
- laravel: 10.*
testbench: ^8.0
exclude:
- laravel: 8.*
stability: prefer-lowest
- laravel: 9.*
stability: prefer-lowest
- laravel: 10.*
stability: prefer-lowest
- laravel: 10.*
php: 8.0

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

Expand Down
15 changes: 7 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,24 @@
}
],
"require": {
"php": "^8.0",
"php": "^8.2",
"hammerstone/sidecar": "^0.4.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/contracts": "^10.0",
"spatie/browsershot": "^3.60",
"spatie/laravel-package-tools": "^1.9.2"
},
"require-dev": {
"larastan/larastan": "^1.0|^2.0",
"laravel/pint": "^1.13",
"league/flysystem-aws-s3-v3": "^1.0|^2.0|^3.0",
"nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0",
"orchestra/testbench": "^6.22|^7.0|^8.0",
"pestphp/pest": "^1.21 | ^2.0",
"pestphp/pest-plugin-laravel": "^1.1 | ^2.0",
"nunomaduro/collision": "^7.0|^8.0",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9 | ^10",
"spatie/laravel-ray": "^1.26"
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit de048ce

Please sign in to comment.