forked from symfony/symfony-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 904 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
{
"name": "symfony/symfony-installer",
"description": "The official installer to create projects based on the Symfony full-stack framework.",
"keywords": ["symfony", "framework", "installer", "php"],
"license": "MIT",
"authors": [
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"autoload": {
"psr-4": { "Symfony\\": "src/Symfony/" }
},
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "^5.3.1",
"symfony/console": "~2.6",
"symfony/filesystem": "~2.5",
"raulfraile/distill": "~0.9,!=0.9.3,!=0.9.4"
},
"require-dev": {
"symfony/process": "~2.5",
"symfony/phpunit-bridge": "^4.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"bin": [
"symfony"
]
}