Skip to content

Commit 836f550

Browse files
authored
Drop PHP 7.x and Laravel v8 (#1558)
1 parent 4cee55e commit 836f550

File tree

2 files changed

+13
-18
lines changed

2 files changed

+13
-18
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,8 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [7.3, 7.4, '8.0', 8.1]
17-
laravel: [8, 9]
18-
exclude:
19-
- php: 7.3
20-
laravel: 9
21-
- php: 7.4
22-
laravel: 9
16+
php: ['8.0', 8.1]
17+
laravel: [9]
2318

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

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@
1414
}
1515
],
1616
"require": {
17-
"php": "^7.3|^8.0",
17+
"php": "^8.0",
1818
"ext-json": "*",
1919
"firebase/php-jwt": "^6.0",
20-
"illuminate/auth": "^8.37|^9.0",
21-
"illuminate/console": "^8.37|^9.0",
22-
"illuminate/container": "^8.37|^9.0",
23-
"illuminate/contracts": "^8.37|^9.0",
24-
"illuminate/cookie": "^8.37|^9.0",
25-
"illuminate/database": "^8.37|^9.0",
26-
"illuminate/encryption": "^8.37|^9.0",
27-
"illuminate/http": "^8.37|^9.0",
28-
"illuminate/support": "^8.37|^9.0",
20+
"illuminate/auth": "^9.0",
21+
"illuminate/console": "^9.0",
22+
"illuminate/container": "^9.0",
23+
"illuminate/contracts": "^9.0",
24+
"illuminate/cookie": "^9.0",
25+
"illuminate/database": "^9.0",
26+
"illuminate/encryption": "^9.0",
27+
"illuminate/http": "^9.0",
28+
"illuminate/support": "^9.0",
2929
"lcobucci/jwt": "^3.4|^4.0",
3030
"league/oauth2-server": "^8.2",
3131
"nyholm/psr7": "^1.3",
@@ -34,7 +34,7 @@
3434
},
3535
"require-dev": {
3636
"mockery/mockery": "^1.0",
37-
"orchestra/testbench": "^6.0|^7.0",
37+
"orchestra/testbench": "^7.0",
3838
"phpunit/phpunit": "^9.3"
3939
},
4040
"autoload": {

0 commit comments

Comments
 (0)