forked from CouscousPHP/Couscous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 820 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
{
"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.4",
"symfony/filesystem": "~2.4",
"symfony/finder": "~2.4",
"symfony/process": "~2.4",
"symfony/yaml": "~2.4",
"twig/twig": "~1.0",
"erusev/parsedown": "~1.1",
"erusev/parsedown-extra": "~0.2.0",
"phine/phar": "~1.0",
"mnapoli/front-yaml": "~1.0",
"mnapoli/php-di": "5.0.x-dev@dev",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.3"
}
}