Skip to content

Commit 7595e61

Browse files
committed
Tools - use deptrac/deptrac instead of abandoned qossmic/deptrac-shim
1 parent 1fbae67 commit 7595e61

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

bin/suggested-tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ show_help() {
4242
get_tools () {
4343
TOOLS="php-parallel-lint/php-parallel-lint php-parallel-lint/php-console-highlighter friendsofphp/php-cs-fixer"
4444
if [[ ${PHP_VERSION:0:1} != "5" ]]; then
45-
TOOLS="${TOOLS} vimeo/psalm phpstan/phpstan nette/neon qossmic/deptrac-shim enlightn/security-checker"
45+
TOOLS="${TOOLS} vimeo/psalm phpstan/phpstan nette/neon deptrac/deptrac enlightn/security-checker"
4646
fi
4747
echo $TOOLS
4848
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"vimeo/psalm": "A static analysis tool for finding errors in PHP applications",
4242
"php-parallel-lint/php-parallel-lint": "Check PHP syntax",
4343
"php-parallel-lint/php-console-highlighter": "Colored output in parallel-lint",
44-
"qossmic/deptrac-shim": "Enforce rules for dependencies between software layers"
44+
"deptrac/deptrac": "Enforce rules for dependencies between software layers"
4545
},
4646
"require-dev": {
4747
"hamcrest/hamcrest-php": ">=2.0.1",

src/Tools/Analyzer/Deptrac.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Deptrac extends \Edge\QA\Tools\Tool
99
public static $SETTINGS = array(
1010
'optionSeparator' => '=',
1111
'outputMode' => OutputMode::RAW_CONSOLE_OUTPUT,
12-
'composer' => 'qossmic/deptrac-shim',
12+
'composer' => 'deptrac/deptrac',
1313
);
1414

1515
public function __invoke()

0 commit comments

Comments
 (0)