Skip to content

Commit

Permalink
remove support for PHP < 8 and Laravel < 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Propaganistas committed Jan 9, 2023
1 parent b24444a commit 5d00599
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 27 deletions.
21 changes: 2 additions & 19 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 7.2, 7.3, 7.4, 8.0, 8.1, 8.2 ]
laravel: [ 6, 7, 8, 9 ]
php: [ 8.0, 8.1, 8.2 ]
laravel: [ 8, 9 ]
stability: [ prefer-lowest, prefer-stable ]
exclude:
- php: 7.2
laravel: 8
- php: 7.2
laravel: 9
- php: 7.3
laravel: 9
- php: 7.4
laravel: 9
- php: 8.1
laravel: 6
- php: 8.1
laravel: 7
- php: 8.2
laravel: 6
- php: 8.2
laravel: 7

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

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
}
],
"require": {
"php": "^7.1|^8.0",
"php": "^8.0",
"ext-json": "*",
"illuminate/cache": "^6.0|^7.0|^8.0|^9.0",
"illuminate/config": "^6.0|^7.0|^8.0|^9.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
"illuminate/validation": "^6.0|^7.0|^8.0|^9.0"
"illuminate/cache": "^8.0|^9.0",
"illuminate/config": "^8.0|^9.0",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0",
"illuminate/console": "^8.0|^9.0",
"illuminate/validation": "^8.0|^9.0"
},
"require-dev": {
"mockery/mockery": "^1.3.3|^1.4.2",
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^9.5.10",
"orchestra/testbench": "*"
},
Expand Down

0 comments on commit 5d00599

Please sign in to comment.