Skip to content

Commit 9072920

Browse files
authored
Drop PHP 7.2 & 7.3 and Laravel 7 (#188)
* Drop PHP 7.2 & 7.3 and Laravel 7 * wip * wip * wip
1 parent 0a20dbb commit 9072920

File tree

2 files changed

+12
-26
lines changed

2 files changed

+12
-26
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,15 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
20-
laravel: [7, 8, 9, 10]
19+
php: [7.4, '8.0', 8.1, 8.2]
20+
laravel: [8, 9, 10]
2121
exclude:
22-
- php: 7.2
23-
laravel: 8
24-
- php: 7.2
25-
laravel: 9
26-
- php: 7.2
27-
laravel: 10
28-
- php: 7.3
29-
laravel: 9
30-
- php: 7.3
31-
laravel: 10
3222
- php: 7.4
3323
laravel: 9
3424
- php: 7.4
3525
laravel: 10
3626
- php: '8.0'
3727
laravel: 10
38-
- php: 8.1
39-
laravel: 7
40-
- php: 8.2
41-
laravel: 7
4228
- php: 8.2
4329
laravel: 8
4430

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^7.2|^8.0",
21+
"php": "^7.4|^8.0",
2222
"ext-json": "*",
2323
"ext-openssl": "*",
24-
"guzzlehttp/guzzle": "^6.5|^7.0",
25-
"illuminate/contracts": "^7.9|^8.0|^9.0|^10.0",
26-
"illuminate/database": "^7.9|^8.0|^9.0|^10.0",
27-
"illuminate/http": "^7.9|^8.0|^9.0|^10.0",
28-
"illuminate/routing": "^7.9|^8.0|^9.0|^10.0",
29-
"illuminate/support": "^7.9|^8.0|^9.0|^10.0",
30-
"illuminate/view": "^7.9|^8.0|^9.0|^10.0",
24+
"guzzlehttp/guzzle": "^7.4.5",
25+
"illuminate/contracts": "^8.0|^9.0|^10.0",
26+
"illuminate/database": "^8.0|^9.0|^10.0",
27+
"illuminate/http": "^8.0|^9.0|^10.0",
28+
"illuminate/routing": "^8.0|^9.0|^10.0",
29+
"illuminate/support": "^8.0|^9.0|^10.0",
30+
"illuminate/view": "^8.0|^9.0|^10.0",
3131
"moneyphp/money": "^3.2|^4.0",
3232
"nesbot/carbon": "^2.0",
3333
"spatie/url": "^1.3.5|^2.0",
@@ -36,9 +36,9 @@
3636
},
3737
"require-dev": {
3838
"mockery/mockery": "^1.0",
39-
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
39+
"orchestra/testbench": "^6.0|^7.0|^8.0",
4040
"phpstan/phpstan": "^1.10",
41-
"phpunit/phpunit": "^8.0|^9.0"
41+
"phpunit/phpunit": "^9.0"
4242
},
4343
"suggest": {
4444
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."

0 commit comments

Comments
 (0)