这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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