forked from beberlei/DoctrineExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.08 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
{
"name": "beberlei/DoctrineExtensions",
"type": "library",
"description": "A set of extensions to Doctrine 2 that add support for additional query functions available in MySQL and Oracle.",
"keywords": ["doctrine", "orm", "database"],
"license": "BSD-3-Clause",
"authors": [
{"name": "Benjamin Eberlei", "email": "[email protected]"},
{"name": "Steve Lacey", "email": "[email protected]"}
],
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"doctrine/orm": "~2.1",
"nesbot/carbon": "*",
"phpunit/phpunit": "~4.5",
"symfony/yaml": "~2.6",
"zf1/zend-date": "~1.12",
"zf1/zend-registry": "~1.12"
},
"suggest": {
"nesbot/carbon": "Alternative to DateTime",
"zf1/zend-date": "Alternative to DateTime"
},
"autoload": {
"psr-4": {"DoctrineExtensions\\" : "src/"}
},
"autoload-dev": {
"psr-4": { "DoctrineExtensions\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}