forked from humanmade/S3-Uploads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 917 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
42
{
"name": "humanmade/s3-uploads",
"description": "WordPress plugin to store uploads on S3",
"homepage": "https://github.com/humanmade/S3-Uploads",
"keywords": [
"wordpress"
],
"license": "GPL-2.0+",
"autoload": {
"classmap": [ "./inc" ]
},
"authors": [
{
"name":"Human Made Limited",
"email":"[email protected]",
"homepage":"http://hmn.md/"
}
],
"support": {
"issues": "https://github.com/humanmade/s3-uploads/issues",
"source": "https://github.com/humanmade/s3-uploads"
},
"type": "wordpress-plugin",
"require": {
"composer/installers": "~1.0 || ^2.0",
"aws/aws-sdk-php": "~3.18"
},
"require-dev": {
"phpunit/phpunit": "7.5",
"pcov/clobber": "^2.0",
"humanmade/psalm-plugin-wordpress": "^1.0"
},
"scripts": {
"test": "./tests/run-tests.sh",
"check-types": "./vendor/bin/psalm"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}