forked from Cloudneeti/docs_cloudneeti
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 876 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": "couscous/couscous",
"license": "MIT",
"autoload": {
"psr-4": {
"Couscous\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Couscous\\Tests\\": "tests/"
}
},
"bin": [
"bin/couscous"
],
"require": {
"php": ">=5.4.0",
"symfony/console": "~2.6|~3.0",
"symfony/filesystem": "~2.6|~3.0",
"symfony/finder": "~2.6|~3.0",
"symfony/process": "~2.6|~3.0",
"symfony/yaml": "~2.6|~3.0",
"twig/twig": "~1.10",
"erusev/parsedown": "~1.5",
"erusev/parsedown-extra": "~0.7",
"phine/phar": "~1.0",
"mnapoli/front-yaml": "~1.5",
"php-di/php-di": "^5.2.1",
"psr/log": "~1.0",
"padraic/phar-updater": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.5"
}
}