forked from 10up/secure-media
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 721 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 721 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
{
"name": "10up/secure-media",
"description": "Store private media securely in WordPress.",
"type": "wordpress-plugin",
"homepage": "https://10up.com",
"license": ["GPL-2.0-or-later"],
"authors": [
{
"name": "Taylor Lovett",
"email": "taylorl@get10up.com"
},
{
"name": "10up",
"homepage": "http://10up.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.6",
"aws/aws-sdk-php": "^3.114"
},
"require-dev": {
"10up/phpcs-composer": "dev-master"
},
"autoload": {
"psr-4": {
"SecureMedia\\": "inc/classes/"
}
},
"scripts": {
"lint": "phpcs secure-media.php inc",
"lint-fix": "phpcbf secure-media.php inc"
}
}