forked from FriendsOfPHP/Sami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.08 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
{
"name": "sami/sami",
"type": "application",
"description": "Sami, an API documentation generator",
"keywords": ["phpdoc"],
"homepage": "http://sami.sensiolabs.org",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"pimple/pimple": "~3.0",
"twig/twig": "~2.0@dev",
"nikic/php-parser": "~3.0@dev",
"michelf/php-markdown": "~1.3",
"symfony/console": "~3.0",
"symfony/finder": "~3.0",
"symfony/filesystem": "~3.0",
"symfony/yaml": "~3.0",
"symfony/process": "~3.0",
"phpdocumentor/reflection-docblock": "~2.0",
"blackfire/php-sdk": "^1.5.18"
},
"require-dev": {
"symfony/phpunit-bridge": "~3.2"
},
"autoload": {
"psr-4": { "Sami\\": "Sami/" }
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["sami.php"]
}