Skip to content

Commit e694e01

Browse files
rename package
1 parent 112a14a commit e694e01

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

composer.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "degraciamathieu/php-class-dependencies-analyzer",
2+
"name": "degraciamathieu/php-dependencies-analyzer",
33
"description": "This tool allows you to monitor the dependencies and instability of your classes.",
44
"keywords": ["php", "quality", "analysis", "static-analysis", "coupling", "instability"],
5-
"homepage": "https://github.com/DeGraciaMathieu/php-class-dependencies-analyzer",
5+
"homepage": "https://github.com/DeGraciaMathieu/php-dependencies-analyzer",
66
"type": "project",
77
"license": "MIT",
88
"support": {
9-
"issues": "https://github.com/DeGraciaMathieu/php-class-dependencies-analyzer/issues",
10-
"source": "https://github.com/DeGraciaMathieu/php-class-dependencies-analyzer"
9+
"issues": "https://github.com/DeGraciaMathieu/php-dependencies-analyzer/issues",
10+
"source": "https://github.com/DeGraciaMathieu/php-dependencies-analyzer"
1111
},
1212
"authors": [
1313
{
@@ -52,27 +52,27 @@
5252
"scripts": {
5353
"test": "vendor/bin/pest -p",
5454
"healthcheck": [
55-
"php class-dependencies-analyzer weakness app",
56-
"php class-dependencies-analyzer weakness app --min-delta=0.1",
57-
"php class-dependencies-analyzer weakness app --limit=10",
58-
"php class-dependencies-analyzer weakness app --only='App\\Application'",
59-
"php class-dependencies-analyzer weakness app --exclude='App\\Infrastructure'",
60-
"php class-dependencies-analyzer cyclic app",
61-
"php class-dependencies-analyzer cyclic app --only='App\\Application'",
62-
"php class-dependencies-analyzer cyclic app --exclude='App\\Infrastructure'",
63-
"php class-dependencies-analyzer analyze:class app",
64-
"php class-dependencies-analyzer analyze:class app --only='App\\Application'",
65-
"php class-dependencies-analyzer analyze:class app --exclude='App\\Infrastructure'",
66-
"php class-dependencies-analyzer analyze:class app --target='App\\Application\\Analyze\\AnalyzeAction'",
67-
"php class-dependencies-analyzer analyze:class app --target='App\\Application\\Analyze\\AnalyzeAction' --depth-limit=2",
68-
"php class-dependencies-analyzer analyze:class app --graph",
69-
"php class-dependencies-analyzer analyze:component app 'App\\Application'",
70-
"php class-dependencies-analyzer analyze:component app 'App\\Application' --graph",
55+
"php dependency-analyzer weakness app",
56+
"php dependency-analyzer weakness app --min-delta=0.1",
57+
"php dependency-analyzer weakness app --limit=10",
58+
"php dependency-analyzer weakness app --only='App\\Application'",
59+
"php dependency-analyzer weakness app --exclude='App\\Infrastructure'",
60+
"php dependency-analyzer cyclic app",
61+
"php dependency-analyzer cyclic app --only='App\\Application'",
62+
"php dependency-analyzer cyclic app --exclude='App\\Infrastructure'",
63+
"php dependency-analyzer analyze:class app",
64+
"php dependency-analyzer analyze:class app --only='App\\Application'",
65+
"php dependency-analyzer analyze:class app --exclude='App\\Infrastructure'",
66+
"php dependency-analyzer analyze:class app --target='App\\Application\\Analyze\\AnalyzeAction'",
67+
"php dependency-analyzer analyze:class app --target='App\\Application\\Analyze\\AnalyzeAction' --depth-limit=2",
68+
"php dependency-analyzer analyze:class app --graph",
69+
"php dependency-analyzer analyze:component app 'App\\Application'",
70+
"php dependency-analyzer analyze:component app 'App\\Application' --graph",
7171
"vendor/bin/pest -p"
7272
],
7373
"coverage": "php -d xdebug.mode=coverage vendor/bin/pest --coverage -p"
7474
},
7575
"minimum-stability": "stable",
7676
"prefer-stable": true,
77-
"bin": ["class-dependencies-analyzer"]
77+
"bin": ["dependency-analyzer"]
7878
}

config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
|
1414
*/
1515

16-
'name' => 'Class-dependencies-analyzer',
16+
'name' => 'Dependency-analyzer',
1717

1818
/*
1919
|--------------------------------------------------------------------------
File renamed without changes.

0 commit comments

Comments
 (0)