-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
38 lines (38 loc) · 1.11 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
{
"name": "akeneo/php-coupling-detector",
"description": "Detect all the coupling issues of your project with respect to the coupling rules you have defined.",
"license": "MIT",
"authors": [
{
"name": "Nicolas Dupont <nicolas@akeneo.com>",
"homepage": "http://www.akeneo.com"
},
{
"name": "Julien Janvier <j.janvier@gmail.com>",
"homepage": "http://jjanvier.com"
}
],
"require": {
"php": "^7.2||^8.0",
"friendsofphp/php-cs-fixer": "^2.1||^3.0",
"symfony/event-dispatcher": "^4.4||^5.0||^6.0||^7.0",
"symfony/finder": "^4.4||^5.0||^6.0||^7.0",
"symfony/console": "^4.4||^5.0||^6.0||^7.0",
"symfony/filesystem": "^4.4||^5.0||^6.0||^7.0"
},
"require-dev": {
"phpspec/phpspec": "^7.2",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {
"Akeneo\\CouplingDetector\\": "src/"
}
},
"bin": ["bin/php-coupling-detector"],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}