-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.46 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
55
56
{
"name": "bitfireat/nc_ext_dav_push",
"type": "project",
"license": "AGPL",
"authors": [
{
"name": "Jonathan Treffler",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"OCA\\DavPush\\": "lib/"
}
},
"require": {
"minishlink/web-push": "v9.0.2"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8"
},
"config": {
"optimize-autoloader": true,
"autoloader-suffix": "DavPush",
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
},
"mozart": {
"dep_namespace": "OCA\\DavPush\\Vendor\\",
"dep_directory": "/lib/Vendor/",
"classmap_directory": "/lib/autoload/",
"classmap_prefix": "DAVPUSH_",
"packages": [
"minishlink/web-push"
]
}
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all install --ansi",
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all update --ansi",
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
]
}
}