Skip to content

Commit d9e9e04

Browse files
authored
Drop support for PHP 7.2 and 7.3 (#25)
Drop support for PHP 7.2 and 7.3
1 parent 30831ce commit d9e9e04

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
php-versions: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
29+
php-versions: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
3030
steps:
3131
- name: Checkout
3232
uses: actions/checkout@v3

Diff for: composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.2 || ^8.0",
14+
"php": "^7.4 || ^8.0",
1515
"guzzlehttp/guzzle": "^6.5 || ^7.3"
1616
},
1717
"require-dev": {
18-
"phpunit/phpunit": "^8.5 || ^9.5 || ^10.1",
19-
"symplify/easy-coding-standard": "^9.4 || ^10.0 || ^11.0"
18+
"phpunit/phpunit": "^9.5 || ^10.1",
19+
"symplify/easy-coding-standard": "^10.0 || ^11.0 || ^12.0"
2020
},
2121
"autoload": {
2222
"psr-4": {

0 commit comments

Comments
 (0)