forked from ezsystems/launchpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "ezsystems/launchpad",
"description": "eZ Launchpad - Ultimate eZ Platform CLI Helper.",
"homepage": "https://github.com/ezsystems/launchpad",
"config": {
"platform": {
"php": "5.6"
}
},
"require": {
"php": "^5.6 || ^7.0",
"symfony/console": "~3.4",
"symfony/yaml": "~3.4",
"symfony/dependency-injection": "~3.4",
"symfony/process": "~3.4",
"symfony/finder": "~3.4",
"symfony/config": "~3.4",
"symfony/filesystem": "~3.4",
"novactive/collection": "^1.0",
"symfony/options-resolver": "~3.4",
"padraic/phar-updater": "^1.0.6",
"symfony/event-dispatcher": "~3.4",
"nesbot/carbon": "^1.22"
},
"require-dev": {
"symfony/var-dumper": "~3.4",
"friendsofphp/php-cs-fixer": "^2.9",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^2.9",
"phpunit/phpunit": "^5.7",
"behat/behat": "^3.4",
"mikey179/vfsStream": "^1.6",
"twig/twig": "^1.35",
"symfony/translation": "~3.4",
"symfony/twig-bridge": "~3.4"
},
"autoload": {
"psr-4": {
"eZ\\Launchpad\\": "src/"
},
"files": [
"src/functions.php"
]
},
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"eZ\\Launchpad\\Tests\\": "tests/Tests"
}
},
"bin": [
"bin/ez"
]
}