Skip to content

Commit

Permalink
Drop support for PHP 7.2 and Laravel 6 and 7 (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmachatschek authored Apr 8, 2021
1 parent ba5f9ef commit b19574d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4, 8.0]
laravel: [^6.0, ^7.0, ^8.0]
exclude:
- php: 7.2
laravel: ^8.0
php: [7.3, 7.4, 8.0]
laravel: [^8.0]

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@
}
],
"require": {
"php": "^7.2|^8.0",
"illuminate/bus": "^6.0|^7.0|^8.0",
"illuminate/contracts": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0",
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/pagination": "^6.0|^7.0|^8.0",
"illuminate/queue": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0"
"php": "^7.3|^8.0",
"illuminate/bus": "^8.0",
"illuminate/contracts": "^8.0",
"illuminate/database": "^8.0",
"illuminate/http": "^8.0",
"illuminate/pagination": "^8.0",
"illuminate/queue": "^8.0",
"illuminate/support": "^8.0"
},
"require-dev": {
"meilisearch/meilisearch-php": "^0.17",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0|^9.3"
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit b19574d

Please sign in to comment.