forked from FriendsOfPHP/Sami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 934 Bytes
/
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
{
"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": "fabien@symfony.com"
}
],
"require": {
"php": ">=5.3.3",
"pimple/pimple": "~3.0",
"twig/twig": "~1.13",
"nikic/php-parser": "~1.0",
"michelf/php-markdown": "~1.3",
"symfony/console": "~2.1",
"symfony/finder": "~2.1",
"symfony/filesystem": "~2.1",
"symfony/yaml": "~2.1",
"symfony/process": "~2.1",
"phpdocumentor/reflection-docblock": "~2.0"
},
"autoload": {
"psr-4": { "Sami\\": "Sami/" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"bin": ["sami.php"]
}