Skip to content

Commit

Permalink
Merge pull request #121 from ro0NL/patch-1
Browse files Browse the repository at this point in the history
Remove PHP_Testability, DesignPatternDetector
  • Loading branch information
jakzal authored Jul 1, 2019
2 parents 34e34d4 + 7227914 commit 3a72a10
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 27 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ test-min: update-min cs deptrac phpunit infection

test-integration: package
rm -rf ./build/tools && \
export PATH="$(shell pwd)/build/tools:$(shell pwd)/build/tools/.composer/vendor/bin:$(shell pwd)/build/tools/QualityAnalyzer/bin:$(shell pwd)/build/tools/DesignPatternDetector/bin:$(shell pwd)/build/tools/EasyCodingStandard/bin:$$PATH" && \
export PATH="$(shell pwd)/build/tools:$(shell pwd)/build/tools/.composer/vendor/bin:$(shell pwd)/build/tools/QualityAnalyzer/bin:$(shell pwd)/build/tools/EasyCodingStandard/bin:$$PATH" && \
export COMPOSER_HOME=$(shell pwd)/build/tools/.composer && \
chmod +x build/toolbox.phar && \
mkdir -p ./build/tools && \
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ It has been extracted as a separate project to make maintenance easier and enabl
* dephpend - [Detect flaws in your architecture](https://dephpend.com/)
* deprecation-detector - [Finds usages of deprecated code](https://github.com/sensiolabs-de/deprecation-detector)
* deptrac - [Enforces dependency rules between software layers](https://github.com/sensiolabs-de/deptrac)
* design-pattern - [Detects design patterns](https://github.com/Halleck45/DesignPatternDetector)
* diffFilter - [Applies QA tools to run on a single pull request](https://github.com/exussum12/coverageChecker)
* ecs - [Sets up and runs coding standard checks](https://github.com/Symplify/EasyCodingStandard)
* infection - [AST based PHP Mutation Testing Framework](https://infection.github.io/)
Expand Down Expand Up @@ -73,6 +72,10 @@ It has been extracted as a separate project to make maintenance easier and enabl
* roave-backward-compatibility-check - [Tool to compare two revisions of a class API to check for BC breaks](https://github.com/Roave/BackwardCompatibilityCheck)
* security-checker - [Checks composer dependencies for known security vulnerabilities](https://github.com/sensiolabs/security-checker)
* simple-phpunit - [Provides utilities to report legacy tests and usage of deprecated code](https://symfony.com/doc/current/components/phpunit_bridge.html)

### Removed tools

* design-pattern - [Detects design patterns](https://github.com/Halleck45/DesignPatternDetector)
* testability - [Analyses and reports testability issues of a php codebase](https://github.com/edsonmedina/php_testability)

## Installation
Expand Down
25 changes: 0 additions & 25 deletions resources/tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,6 @@
"test": "deptrac list",
"tags": ["featured"]
},
{
"name": "design-pattern",
"summary": "Detects design patterns",
"website": "https://github.com/Halleck45/DesignPatternDetector",
"command": {
"composer-install": {
"repository": "https://github.com/Halleck45/DesignPatternDetector.git",
"target-dir": "%target-dir%/DesignPatternDetector"
}
},
"test": "design-pattern -V"
},
{
"name": "diffFilter",
"summary": "Applies QA tools to run on a single pull request",
Expand Down Expand Up @@ -724,19 +712,6 @@
},
"test": "simple-phpunit --version",
"tags": ["exclude-php:7.1"]
},
{
"name": "testability",
"summary": "Analyses and reports testability issues of a php codebase",
"website": "https://github.com/edsonmedina/php_testability",
"command": {
"composer-bin-plugin": {
"package": "edsonmedina/php_testability:dev-master",
"namespace": "tools",
"links": {"%target-dir%/testability": "testability"}
}
},
"test": "testability --help"
}
]
}
Expand Down

0 comments on commit 3a72a10

Please sign in to comment.