forked from ApiGen/ApiGen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 2.06 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": "apigen/apigen",
"description": "PHP source code API generator",
"keywords": ["documentation", "phpdoc", "generator", "api"],
"homepage": "http://apigen.org/",
"license": "MIT",
"authors": [
{ "name": "Tomáš Votruba", "homepage": "https://tomasvotruba.cz", "email": "[email protected]" },
{ "name": "Jaroslav Hanslík", "homepage": "https://github.com/kukulich" },
{ "name": "Ondřej Nešpor", "homepage": "https://github.com/andrewsville" },
{ "name": "David Grudl", "homepage": "http://davidgrudl.com" }
],
"require": {
"php": "^7.1",
"popsul/php-token-reflection": "^1.5",
"apigen/theme-bootstrap": "1.1.*",
"kukulich/fshl": "^2.1",
"latte/latte": "^2.4",
"nette/bootstrap": "^2.4",
"nette/di": "^2.4",
"nette/neon": "^2.4",
"nette/reflection": "^2.4",
"symfony/options-resolver": "^3.2",
"tracy/tracy": "^2.3",
"contributte/console": "^0.1",
"symplify/symfony-event-dispatcher": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"phpstan/phpstan": "^0.6.4",
"symplify/easy-coding-standard": "^1.4",
"squizlabs/php_codesniffer": "3.0.0RC4 as 2.8.1",
"slevomat/coding-standard": "^2.0",
"symplify/coding-standard": "^1.4.8"
},
"autoload": {
"psr-4": {
"ApiGen\\": "src",
"PHP_CodeSniffer\\": "vendor/squizlabs/php_codesniffer/src"
}
},
"autoload-dev": {
"psr-4": {
"ApiGen\\Tests\\": "tests",
"ApiGen\\Parser\\Tests\\": "tests/Parser"
}
},
"scripts": {
"complete-check": ["phpunit", "@phpstan", "@check-cs"],
"phpstan": "vendor/bin/phpstan analyse src --level 2 -c phpstan.neon",
"check-cs": "vendor/bin/easy-coding-standard check src tests",
"fix-cs": "vendor/bin/easy-coding-standard check src tests --fix"
},
"bin": [
"bin/apigen"
],
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
}
}