Skip to content

Commit

Permalink
Merge pull request #168 from laravel/remove-old-versions
Browse files Browse the repository at this point in the history
[7.x] Drop old PHP and Laravel versions
  • Loading branch information
taylorotwell authored Feb 14, 2023
2 parents b26eb82 + 2b4310d commit 4cdedb6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 39 deletions.
27 changes: 2 additions & 25 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
laravel: [7, 8, 9, 10]
exclude:
- php: 7.2
laravel: 8
- php: 7.2
laravel: 9
- php: 7.2
laravel: 10
- php: 7.3
laravel: 9
- php: 7.3
laravel: 10
- php: 7.4
laravel: 9
- php: 7.4
laravel: 10
- php: '8.0'
laravel: 10
- php: 8.1
laravel: 7
- php: 8.2
laravel: 7
- php: 8.2
laravel: 8
php: [8.1, 8.2]
laravel: [10]

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

Expand Down
27 changes: 13 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,23 @@
}
],
"require": {
"php": "^7.2|^8.0",
"php": "^8.1",
"ext-dom": "*",
"ext-json": "*",
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
"illuminate/http": "^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"illuminate/testing": "^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^10.0",
"illuminate/database": "^10.0",
"illuminate/http": "^10.0",
"illuminate/support": "^10.0",
"illuminate/testing": "^10.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.5|^9.0",
"symfony/console": "^5.0|^6.0",
"symfony/css-selector": "^5.0|^6.0",
"symfony/dom-crawler": "^5.0|^6.0",
"symfony/http-foundation": "^5.0|^6.0",
"symfony/http-kernel": "^5.0|^6.0"
"phpunit/phpunit": "^9.0",
"symfony/console": "^6.2",
"symfony/css-selector": "^6.2",
"symfony/dom-crawler": "^6.2",
"symfony/http-foundation": "^6.2",
"symfony/http-kernel": "^6.2"
},
"require-dev": {
"laravel/framework": "^7.0|^8.0|^9.0|^10.0"
"laravel/framework": "^10.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 4cdedb6

Please sign in to comment.