-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (49 loc) · 1.35 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
{
"name": "phpcq/autoload-validation",
"description": "Check that the contents of the composer.json autoload keys are correct.",
"license": "MIT",
"authors": [
{
"name":"Christian Schiffler",
"email":"[email protected]",
"homepage":"http://www.cyberspectrum.de",
"role":"Developer"
},
{
"name":"Tristan Lins",
"email":"[email protected]",
"homepage":"https://tristan.lins.io",
"role":"Developer"
}
],
"support":{
"issues":"https://github.com/phpcq/autoload-validation/issues",
"source":"https://github.com/phpcq/autoload-validation",
"irc": "irc://irc.freenode.org/phpcq"
},
"autoload": {
"psr-4": {
"PhpCodeQuality\\AutoloadValidation\\" : "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpCodeQuality\\AutoloadValidation\\Test\\" : "tests/Test"
}
},
"require": {
"php": "^5.6 | ^7.1",
"symfony/console": "^3.0 | ^4.0 | ^5.0",
"symfony/finder": "^3.0 | ^4.0 | ^5.0",
"psr/log": "^1.1.3"
},
"require-dev": {
"phpcq/all-tasks": "^1.3"
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
},
"bin": ["bin/check-autoloading.php"]
}