Skip to content

Commit

Permalink
Drop exclude-php:7.3 for PHP CS Fixer (#31)
Browse files Browse the repository at this point in the history
* Drop exclude-php:7.3 for PHP CS Fixer

* Revert "Disable php-formatter on php 7.3 until php-cs-fixer supports it"

This reverts commit 784913a.

* Revert "Disable easycodingstandard on php 7.3 until php-cs-fixer supports it"

This reverts commit c714603.

* Revert "Disable php-coupling-detector on php 7.3 until php-cs-fixer supports it"

This reverts commit 49bcc51.

* Revert "Run tests on php 7.3"

This reverts commit d7e01c0.

* Update Makefile
  • Loading branch information
keradus authored and jakzal committed Jan 7, 2019
1 parent d49b7b6 commit 7d7d1f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ test-integration: package
.PHONY: test-integration

cs: tools/php-cs-fixer
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
.PHONY: cs

cs-fix: tools/php-cs-fixer
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
.PHONY: cs-fix

deptrac: tools/deptrac
Expand Down
11 changes: 4 additions & 7 deletions resources/tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@
"target-dir": "%target-dir%/EasyCodingStandard"
}
},
"test": "ecs -h",
"tags": ["exclude-php:7.3"]
"test": "ecs -h"
},
{
"name": "infection",
Expand Down Expand Up @@ -179,8 +178,7 @@
"namespace": "php-coupling-detector"
}
},
"test": "php-coupling-detector list",
"tags": ["exclude-php:7.3"]
"test": "php-coupling-detector list"
},
{
"name": "php-cs-fixer",
Expand All @@ -193,7 +191,7 @@
}
},
"test": "php-cs-fixer list",
"tags": ["featured", "exclude-php:7.3"]
"tags": ["featured"]
},
{
"name": "php-formatter",
Expand All @@ -207,8 +205,7 @@
"version": "1fa3d9a3e1c67654f3fe2511bd28fa7c33b59d7e"
}
},
"test": "php-formatter list",
"tags": ["exclude-php:7.3"]
"test": "php-formatter list"
},
{
"name": "php-semver-checker",
Expand Down

0 comments on commit 7d7d1f0

Please sign in to comment.