forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 2.8 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
{
"name": "phpdocumentor/phpdocumentor",
"description": "Documentation Generator for PHP",
"keywords": ["documentation", "api", "dga", "application", "phpdoc"],
"homepage": "http://www.phpdoc.org",
"license": "MIT",
"autoload": {
"psr-4": {
"phpDocumentor\\Infrastructure\\": ["src/Infrastructure" ],
"phpDocumentor\\DomainModel\\": ["src/DomainModel" ],
"phpDocumentor\\Application\\": ["src/Application" ]
}
},
"autoload-dev": {
"psr-0": { "phpDocumentor": ["tests/unit/"] },
"psr-4": {
"phpDocumentor\\Infrastructure\\": ["tests/unit/Infrastructure" ],
"phpDocumentor\\DomainModel\\": ["tests/unit/DomainModel" ],
"phpDocumentor\\Application\\": ["tests/unit/Application" ]
}
},
"require": {
"php": ">=5.5",
"ext-libxml": "*",
"php-di/php-di": "^5.0",
"twig/twig": "^1.3",
"erusev/parsedown": "^1.0",
"tedivm/stash": "^0.12.3",
"webmozart/assert": "^1.0",
"symfony/console": "^2.8|~3.0",
"symfony/validator": "^2.8|~3.0",
"phpdocumentor/graphviz": "^1.0",
"phpdocumentor/fileset": "^1.0",
"phpdocumentor/reflection": "dev-develop@dev",
"phpdocumentor/reflection-docblock": "^3.0",
"phpdocumentor/flyfinder": "^1.0@dev",
"league/tactician": "^0.6.0",
"league/flysystem": "^1.0",
"league/event": "^2.1"
},
"minimum-stability": "stable",
"require-dev": {
"behat/behat": "^3.0",
"mockery/mockery": "~0.9",
"mikey179/vfsStream": "^1.2",
"symfony/expression-language": "^2.4",
"herrera-io/phar-update": "^2.0",
"league/flysystem-memory": "^1.0",
"phing/phing": "^2.13"
},
"suggest": {
"ext-twig": "Enabling the twig extension improves the generation of twig based templates.",
"ext-xslcache": "Enabling the XSLCache extension improves the generation of xml based templates."
},
"config": {
"bin-dir":"bin/"
},
"bin": ["bin/phpdoc.php", "bin/phpdoc"],
"scripts": {
"post-install-cmd": [ "php bin/phing build:dependencies:install" ],
"test": [ "./bin/phpunit --colors=always -v" ],
"coverage": [ "./bin/phpunit --colors=always -v --coverage-html build/coverage" ],
"style": [ "./bin/phpcs --colors -p" ]
},
"extra": {
"branch-alias": {
"dev-develop": "3.0-dev"
}
}
}