-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 3.29 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "degraciamathieu/php-class-dependencies-analyzer",
"description": "This tool allows you to monitor the dependencies and instability of your classes.",
"keywords": ["php", "quality", "analysis", "static-analysis", "coupling", "instability"],
"homepage": "https://github.com/DeGraciaMathieu/php-class-dependencies-analyzer",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/DeGraciaMathieu/php-class-dependencies-analyzer/issues",
"source": "https://github.com/DeGraciaMathieu/php-class-dependencies-analyzer"
},
"authors": [
{
"name": "Mathieu De Gracia",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2.0",
"degraciamathieu/php-file-explorer": "^0.4.1",
"illuminate/view": "^11.5",
"jerowork/class-dependencies-parser": "^0.5.1",
"laravel-zero/framework": "^11.0.0",
"laravel/prompts": "^0.1.25",
"nikic/php-parser": "4.19.*"
},
"require-dev": {
"laravel/pint": "^1.15.2",
"mockery/mockery": "^1.6.11",
"pestphp/pest": "^2.34.7"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "vendor/bin/pest -p",
"healthcheck": [
"php class-dependencies-analyzer weakness app",
"php class-dependencies-analyzer weakness app --min-delta=0.1",
"php class-dependencies-analyzer weakness app --limit=10",
"php class-dependencies-analyzer weakness app --only='App\\Application'",
"php class-dependencies-analyzer weakness app --exclude='App\\Infrastructure'",
"php class-dependencies-analyzer cyclic app",
"php class-dependencies-analyzer cyclic app --only='App\\Application'",
"php class-dependencies-analyzer cyclic app --exclude='App\\Infrastructure'",
"php class-dependencies-analyzer analyze:class app",
"php class-dependencies-analyzer analyze:class app --only='App\\Application'",
"php class-dependencies-analyzer analyze:class app --exclude='App\\Infrastructure'",
"php class-dependencies-analyzer analyze:class app --target='App\\Application\\Analyze\\AnalyzeAction'",
"php class-dependencies-analyzer analyze:class app --target='App\\Application\\Analyze\\AnalyzeAction' --depth-limit=2",
"php class-dependencies-analyzer analyze:class app --graph",
"php class-dependencies-analyzer analyze:component app 'App\\Application'",
"php class-dependencies-analyzer analyze:component app 'App\\Application' --graph",
"vendor/bin/pest -p"
],
"coverage": "php -d xdebug.mode=coverage vendor/bin/pest --coverage -p"
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": ["class-dependencies-analyzer"]
}