-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 823 Bytes
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 823 Bytes
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
{
"name": "csrui/wpd-toolset",
"type": "library",
"autoload": {
"psr-4": {
"WPD\\": "src/WPD/"
}
},
"bin": [ "index.php" ],
"require": {
"symfony/console": "2.7",
"symfony/yaml": "^3.2"
},
"require-dev": {
"macfja/phar-builder": "^0.2.5"
},
"authors": [
{
"name": "Rui Sardinha",
"email": "mail@ruisardinha.com"
}
],
"extra": {
"phar-builder": {
"compression": "GZip",
"name": "wpdtool.phar",
"output-dir": "bin/",
"entry-point": "index.php",
"include-dev": false,
"events": {
"build.before" : "git describe --tags > bin/version.txt",
"build.after": [
"rm bin/version.txt",
"chmod +x bin/wpdtool.phar"
]
}
}
},
"config": {
"sort-packages": true
}
}