Skip to content

Commit

Permalink
Remove support to Laravel 8 and php 7.4 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesargb committed Jan 25, 2023
1 parent 138dc9f commit 7544c0e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 16 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.2, 8.1, 8.0, 7.4]
laravel: [9.*, 8.*]
php: [8.2, 8.1, 8.0]
laravel: [9.*]
dependency-version: [prefer-stable]
exclude:
- php: 7.4
laravel: 9.*
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*

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

Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
],
"license": "MIT",
"require": {
"php" : "^7.4 || ^8.0",
"illuminate/auth": "^8.0|^9.0",
"illuminate/container": "^8.0|^9.0",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/database": "^8.0|^9.0",
"php" : "^8.0",
"illuminate/auth": "^9.0",
"illuminate/container": "^9.0",
"illuminate/contracts": "^9.0",
"illuminate/database": "^9.0",
"laravel/serializable-closure": "^1.0"
},
"autoload": {
Expand All @@ -48,10 +48,10 @@
}
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^7.0|^9.0",
"nunomaduro/larastan": "^1.0|^2.1",
"friendsofphp/php-cs-fixer": "^2.0|^3.9"
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.0",
"nunomaduro/larastan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.9"
},
"minimum-stability": "dev",
"prefer-stable": true
Expand Down

0 comments on commit 7544c0e

Please sign in to comment.