forked from justafish/drupal_amazons3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.07 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
{
"name": "drupal/amazons3",
"description": "Provides S3 integration with Drupal's file system.",
"license": "GPL-2.0",
"authors": [
{
"name": "Sally Young",
"email": "[email protected]"
},
{
"name": "Andrew Berry",
"email": "[email protected]"
}
],
"require": {
"aws/aws-sdk-php": "2.8.2-p1",
"capgemini/drupal_doctrine_cache": "0.0.1-p1"
},
"require-dev": {
"phpunit/phpunit": "~4.6",
"satooshi/php-coveralls": "0.6.*"
},
"autoload": {
"psr-4": {
"Drupal\\amazons3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\amazons3Test\\": "tests/"
},
"classmap": ["tests/include"]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/deviantintegral/drupal-doctrine-cache.git"
},
{
"type": "vcs",
"url": "https://github.com/deviantintegral/aws-sdk-php.git"
}
]
}