Skip to content

Commit

Permalink
Allow PHP 7.1 (#69)
Browse files Browse the repository at this point in the history
* Allow PHP 7.1

* Try dev-main

* Revert try dev-main

* Update docs

* Remove PHP version features

* Update composer.json

* Allow PHP 7.1

* Update composer.json

* Use Rector 0.11

* Disable PHPUnitSetList::PHPUNIT_CODE_QUALITY temporarily

* Disable fail-fast

* Remove Comparable.php

* Update rector.php

* Update composer.json

* Update composer.json

* Update tests.yml
  • Loading branch information
zingimmick authored May 21, 2021
1 parent 902bc8f commit 441026b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4, 8.0]
php: [7.1, 7.2, 7.3, 7.4, 8.0]

name: PHP ${{ matrix.php }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<a href="https://packagist.org/packages/zing/coding-standard"><img src="https://poser.pugx.org/zing/coding-standard/license" alt="License"></a>
</p>

> **Requires [PHP 7.2.0+](https://php.net/releases/)**
> **Requires [PHP 7.1.0+](https://php.net/releases/)**
Require Coding Standard using [Composer](https://getcomposer.org):

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"sort-packages": true
},
"require": {
"php": "^7.2 || ^8.0",
"php": "^7.1 || ^8.0",
"rector/rector": "^0.11.2",
"slevomat/coding-standard": "^7.0",
"symplify/easy-coding-standard": "^9.3.3"
"symplify/easy-coding-standard": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
Expand Down

0 comments on commit 441026b

Please sign in to comment.