Skip to content

Commit

Permalink
Drop PHP 7.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
simPod committed Dec 1, 2020
1 parent 8795c03 commit 1b582d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
php: [7.1, 7.2, 7.3, 7.4]
php: [7.2, 7.3, 7.4]
env: [
'EXECUTOR= DEPENDENCIES=--prefer-lowest',
'EXECUTOR=coroutine DEPENDENCIES=--prefer-lowest',
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@2.9.0
with:
php-version: 7.1
php-version: 7.2
coverage: none
extensions: json, mbstring

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@2.9.0
with:
php-version: 7.1
php-version: 7.2
coverage: none
extensions: json, mbstring

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

- PHP version required: 7.2+

Fix:
- Parse `DirectiveDefinitionNode->locations` as `NodeList<NamedNode>` (fixes AST::fromArray conversion) (#723)
- Parse `Parser::implementsInterfaces` as `NodeList<NamedTypeNode>` (fixes AST::fromArray conversion)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"API"
],
"require": {
"php": "^7.1||^8.0",
"php": "^7.2||^8.0",
"ext-json": "*",
"ext-mbstring": "*"
},
Expand Down

0 comments on commit 1b582d7

Please sign in to comment.