Skip to content

Commit

Permalink
[7.x] Drop old PHP and Laravel versions (#993)
Browse files Browse the repository at this point in the history
* Drop old PHP and Laravel versions

* wip
  • Loading branch information
driesvints authored Aug 19, 2022
1 parent 73b55eb commit fe01b00
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 20 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,9 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, '8.0', 8.1]
laravel: [8, 9]
phpunit: [9, 10]
exclude:
- php: 7.3
phpunit: 10
- php: 7.3
laravel: 9
- php: 7.4
laravel: 9
- php: 7.4
phpunit: 10
php: ['8.0', 8.1]
laravel: [9]
phpunit: [9]

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

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@
}
],
"require": {
"php": "^7.3|^8.0",
"php": "^8.0",
"ext-json": "*",
"ext-zip": "*",
"php-webdriver/webdriver": "^1.9.0",
"nesbot/carbon": "^2.0",
"illuminate/console": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0",
"symfony/console": "^5.1.4|^6.0",
"symfony/finder": "^5.1.4|^6.0",
"symfony/process": "^5.1.4|^6.0",
"illuminate/console": "^9.0",
"illuminate/support": "^9.0",
"symfony/console": "^6.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^9.0|^10.0",
"orchestra/testbench": "^6.12.1|^7.0|dev-phpunit10"
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^7.0"
},
"suggest": {
"ext-pcntl": "Used to gracefully terminate Dusk when tests are running."
Expand Down

0 comments on commit fe01b00

Please sign in to comment.