-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.22 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
{
"name": "wemakecustom/composer-script-utils",
"description": "Set of tools for Composer scripts",
"type": "library",
"keywords": ["composer"],
"license": "MIT",
"authors": [
{
"name": "Sébastien Lavoie",
"email": "[email protected]"
},
{
"name": "Mathieu Lemoine",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"WMC\\Composer\\Utils\\": "src",
"WMC\\Composer\\Utils\\Test\\": "test"
}
},
"autoload-dev": {
"psr-4": { "WMC\\Composer\\Utils\\Tests\\": "tests" }
},
"require-dev": {
"composer/composer": "dev-master",
"knplabs/gaufrette": "^0.2.1"
},
"suggest": {
"symfony/yaml": "Enables yaml parsing"
},
"scripts": {
"post-install-cmd": [
"WMC\\Composer\\Utils\\ScriptHandler::updateDirs"
],
"post-update-cmd": [
"WMC\\Composer\\Utils\\ScriptHandler::updateDirs"
]
},
"extra": {
"update-config-dirs": {
"samples/dist": "samples"
},
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}