-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
62 lines (62 loc) · 1.53 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
{
"name": "phpcq/author-validation",
"description": "Check if all authors of a particular file are mentioned in the copyright header.",
"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/author-validation/issues",
"source": "https://github.com/phpcq/author-validation",
"irc": "irc://irc.freenode.org/phpcq"
},
"autoload": {
"psr-4": {
"PhpCodeQuality\\AuthorValidation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpCodeQuality\\AuthorValidation\\Test\\": "tests"
}
},
"require": {
"php": "^5.6 || ^7.1",
"ext-json": "*",
"ext-posix": "*",
"bit3/git-php": "^1.5",
"cache/doctrine-adapter": "^1.0",
"doctrine/cache": "^1.5",
"phpspec/php-diff": "^1.0",
"sebastian/phpcpd": "^3.0 || ^4.1 || ^5.0 || ^6.0",
"symfony/console": "^3.0 || ^4.0 || ^5.0",
"symfony/finder": "^3.0 || ^4.0 || ^5.0",
"symfony/process": "^3.0 || ^4.0 || ^5.0",
"symfony/yaml": "^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"phpcq/all-tasks": "^1.3"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
}
},
"bin": [
"bin/check-author.php"
]
}