-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
87 lines (87 loc) · 2.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "respect/structural",
"description": "Fluent NoSQL Toolkit",
"keywords": ["nosql", "mongo", "mongodb", "aws", "dynamodb", "data", "odm", "respect", "aws dynamo", "dynamo", "aws dynamodb"],
"type": "library",
"time": "2012-05-05 19:11:23",
"homepage": "http://respect.li",
"license": "BSD Style",
"support": {
"issues": "https://github.com/Respect/Structural/issues"
},
"authors": [
{
"name": "Alexandre Gomes Gaigalas",
"email": "[email protected]"
},
{
"name": "Antonio Spinelli",
"email": "[email protected]"
},
{
"name": "Claudson Oliveira",
"email": "[email protected]"
},
{
"name": "Fa\u0301bio da Silva Ribeiro",
"email": "[email protected]"
},
{
"name": "Henrique Moody",
"email": "[email protected]"
},
{
"name": "Kinn Coelho Julia\u0303o",
"email": "[email protected]"
},
{
"name": "Rogerio Prado de Jesus",
"email": "[email protected]"
},
{
"name": "Thiago Rigo",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0",
"respect/data": "^0.2",
"ramsey/uuid": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.2",
"phpmd/phpmd": "^2.3",
"squizlabs/php_codesniffer": "^2.5",
"fabpot/php-cs-fixer": "^1.11",
"mongodb/mongodb": "^1.0.0",
"aws/aws-sdk-php": "^3.15"
},
"suggest": {
"ext-mongo": "@stable",
"ext-mongodb": "@stable",
"mongodb/mongodb": "^1.0.0",
"aws/aws-sdk-php": "^3.15"
},
"scripts": {
"tests": "phpunit --colors",
"coverage-html": "phpunit --coverage-html build/coverage tests",
"coverage": "phpunit -c phpunit.xml.dist --coverage-clover=clover.xml",
"md": "phpmd src,tests text cleancode,codesize,controversial,design,naming,unusedcode",
"csfix": "php-cs-fixer fix"
},
"autoload": {
"psr-4": {
"Respect\\Structural\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Respect\\Structural\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}