-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 898 Bytes
/
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
{
"name": "mrhenry/s3-uploads",
"description": "WordPress plugin to store uploads on S3",
"homepage": "https://github.com/mrhenry/S3-Uploads",
"keywords": [
"wordpress"
],
"license": "GPL-2.0+",
"support" : {
"issues": "https://github.com/mrhenry/s3-uploads/issues",
"source": "https://github.com/mrhenry/s3-uploads"
},
"type": "wordpress-plugin",
"require": {
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "^2.2"
},
"scripts": {
"post-install-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs"
],
"post-update-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs"
]
},
"archive": {
"exclude": [
".git",
".github",
"tests",
"composer.lock"
]
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}