Skip to content

Commit 2dcda07

Browse files
committed
Removed support for PHP 7.1
1 parent a1bbaf3 commit 2dcda07

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
strategy:
1818
matrix:
1919
php-version:
20-
- "7.1"
2120
- "7.2"
2221
- "7.3"
2322
- "7.4"
@@ -42,7 +41,7 @@ jobs:
4241
restore-keys: "php-${{ matrix.php-version }}-composer-"
4342

4443
- name: "Reset composer platform"
45-
if: matrix.php-version == '7.1' || matrix.php-version == '7.2'
44+
if: matrix.php-version == '7.2'
4645
run: "composer config --unset platform"
4746

4847
- name: "Install dependencies"
@@ -119,7 +118,6 @@ jobs:
119118
matrix:
120119
dependencies: ["lowest", "highest"]
121120
php-version:
122-
- "7.1"
123121
- "7.2"
124122
- "7.3"
125123
- "7.4"
@@ -146,7 +144,7 @@ jobs:
146144
restore-keys: "php-${{ matrix.php-version }}-composer-"
147145

148146
- name: "Reset composer platform"
149-
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '8.1'
147+
if: matrix.php-version == '7.2' || matrix.php-version == '8.1'
150148
run: "composer config --unset platform"
151149

152150
- name: "Install lowest dependencies"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
},
1717
"require": {
18-
"php": "^7.1 || ^8.0",
18+
"php": "^7.2 || ^8.0",
1919
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
2020
"phpstan/phpdoc-parser": "^1.4.1",
2121
"squizlabs/php_codesniffer": "^3.6.2"

0 commit comments

Comments
 (0)