-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
69 lines (69 loc) · 1.54 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "clarifynl/responsive-pics",
"type": "wordpress-plugin",
"description": "Responsive Pics is a Wordpress tool for resizing images on the fly.",
"keywords": [
"php",
"wordpress",
"picture",
"image",
"resizing"
],
"homepage": "https://responsive.pics",
"license": [
"GPL-3.0"
],
"authors": [
{
"name": "Wimer Hazenberg",
"email": "[email protected]",
"homepage": "https://clarify.nl"
},
{
"name": "Toine Kamps",
"email" : "[email protected]",
"homepage": "https://clarify.nl"
}
],
"support": {
"issues": "https://github.com/clarifynl/responsive-pics/issues",
"source": "https://github.com/clarifynl/responsive-pics",
"docs": "https://responsive.pics"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:clarifynl/responsive-pics.git"
}
],
"require": {
"php": ">=5.5.0",
"composer/installers": "^1.0|^2.0"
},
"require-dev": {
"slowprog/composer-copy-file": "~0.3",
"woocommerce/action-scheduler": "^3.5",
"wpackio/enqueue": "^3.4"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"extra": {
"copy-file": {
"vendor/wpackio/enqueue/inc/": "lib/wpackio/enqueue/inc/"
},
"installer-paths": {
"lib/{$name}/": ["woocommerce/action-scheduler"]
}
},
"scripts": {
"post-install-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"post-update-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
]
}
}