forked from rcambien/riverline-dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 880 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
{
"name":"ohm-s/dynamodb",
"description":"Amazon WebService DynamoDB PHP object wrapper",
"keywords":["dynamodb","aws","amazon"],
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Omar Ayoub-Salloum",
"email":"[email protected]"
},
{
"name":"Romain Cambien",
"email":"[email protected]"
},
{
"name":"Riverline",
"homepage":"http://www.riverline.fr"
}
],
"homepage": "https://github.com/rcambien/riverline-dynamodb",
"minimum-stability": "stable",
"require":{
"php":">=5.3.5",
"aws/aws-sdk-php": ">=3.0.0,<=3.81.7"
},
"autoload":{
"psr-0":{
"Riverline\\DynamoDB": "src/",
"Aws\\DynamoDb\\Enum": "src/",
"Aws\\Common\\Enum": "src/"
}
}
}