-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (101 loc) · 2.7 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "graze/dal",
"description": "Data Access Layer",
"keywords": [
"abstraction",
"access",
"active record",
"activerecord",
"connection",
"data",
"data mapper",
"database",
"datamapper",
"dal",
"dao",
"db",
"dbal",
"mapper",
"orm",
"persist",
"persistance",
"record",
"graze"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Public contributors",
"homepage": "https://github.com/graze/dal/graphs/contributors",
"role": "Community"
},
{
"name": "Andrew Lawson",
"homepage": "http://adlawson.com",
"role": "Developer"
},
{
"name": "Will Pillar",
"email": "will.pillar@graze.com",
"role": "Developer"
},
{
"name": "Graze Developers",
"email": "developers@graze.com",
"homepage": "https://www.graze.com",
"role": "Development Team"
}
],
"support": {
"issues": "https://github.com/graze/dal/issues"
},
"autoload": {
"psr-4": {
"Graze\\Dal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graze\\Dal\\Test\\": "tests/src/",
"Graze\\Dal\\Test\\Unit\\": "tests/src/unit"
},
"classmap": [
"tests/src/Hydrators",
"tests/src/Proxies"
]
},
"require": {
"php": ">=5.5.0",
"graze/standards": "^2.0",
"doctrine/common": "^2.5",
"doctrine/inflector": "^1.1",
"ocramius/generated-hydrator": "^1.2",
"ocramius/proxy-manager": "^1.0",
"symfony/console": "^2.8",
"zendframework/zend-hydrator": "^1.0",
"zendframework/zend-code": "^2.6"
},
"require-dev": {
"adlawson/timezone": "~1.0",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "~4.0",
"doctrine/orm": "^2.5",
"illuminate/database": "^5.2",
"symfony/var-dumper": "^2.6",
"aura/sql": "^2.4",
"guzzlehttp/guzzle": "^6.1",
"symfony/yaml": "^2.8",
"squizlabs/php_codesniffer": "3.0.2"
},
"suggest": {
"doctrine/orm": "Required when using the DoctrineOrmAdapter",
"illuminate/database": "Required when using the EloquentOrmAdapter",
"aura/sql": "Required when using the PdoAdapter",
"guzzlehttp/guzzle": "Required when using the RestAdapter",
"symfony/yaml": "Required when using factory methods on adapters"
},
"bin": [
"bin/dal"
]
}