forked from cpliakas/dynamo-db-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.2 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
{
"name": "cpliakas/dynamo-db-odm",
"type": "library",
"description": "A lightweight ODM for DynamoDB",
"homepage": "https://github.com/cpliakas/dynamo-db-odm",
"license": "MIT",
"authors": [
{
"name": "See contributors",
"homepage": "https://github.com/cpliakas/dynamo-db-odm/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cpliakas/dynamo-db-odm/issues"
},
"require": {
"php": ">=5.3.0",
"aws/aws-sdk-php": "~2.0",
"doctrine/cache": "*"
},
"require-dev": {
"ircmaxell/password-compat": "~1.0",
"pdepend/pdepend": "~1.0",
"phploc/phploc": "~2.0",
"phpmd/phpmd": "~1.0",
"phpunit/phpunit": "~3.0",
"scrutinizer/ocular": "~1.0",
"sebastian/phpcpd": "~2.0"
},
"suggest": {
"ircmaxell/password-compat": "Enables the password transformer for PHP <=5.4",
"phpseclib/phpseclib": "Enables the encrypted string transformer and renderer",
"symfony/security": "Enables the random string transformer"
},
"autoload": {
"psr-4": {
"Cpliakas\\DynamoDb\\ODM\\": "src/"
}
}
}