Skip to content

Commit

Permalink
Drop PHP 7.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
simPod committed Dec 1, 2020
1 parent 8795c03 commit 92b97c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 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.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.3
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.3
coverage: none
extensions: json, mbstring

Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@2.9.0
with:
php-version: 7.2
php-version: 7.3
coverage: pcov
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.3+

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.3||^8.0",
"ext-json": "*",
"ext-mbstring": "*"
},
Expand Down

0 comments on commit 92b97c2

Please sign in to comment.