-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
53 lines (53 loc) · 1.4 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
{
"name": "ezsystems/launchpad",
"description": "eZ Launchpad - Ultimate eZ Platform CLI Helper.",
"homepage": "https://github.com/ezsystems/launchpad",
"require": {
"php": "^7.2.5",
"symfony/console": "^5.1",
"symfony/yaml": "^5.1",
"symfony/dependency-injection": "^5.1",
"symfony/process": "^5.1",
"symfony/finder": "^5.1",
"symfony/config": "^5.1",
"symfony/filesystem": "^5.1",
"novactive/collection": "^1.1.0",
"symfony/options-resolver": "^5.1",
"symfony/event-dispatcher": "^5.1",
"nesbot/carbon": "^2"
},
"require-dev": {
"symfony/var-dumper": "^5.1",
"friendsofphp/php-cs-fixer": "^2.14",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^3.4",
"phpunit/phpunit": "^8",
"behat/behat": "^3.7",
"mikey179/vfsstream": "^1.6",
"twig/twig": "^3",
"symfony/translation": "^5.1",
"symfony/twig-bridge": "^5.1"
},
"config": {
"platform": {
"php": "7.2.5"
}
},
"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"
]
}