forked from beberlei/DoctrineExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 930 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
{
"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": "kontakt@beberlei.de"},
{"name": "Steve Lacey", "email": "steve@stevelacey.net"}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"doctrine/orm": "^2.5",
"friendsofphp/php-cs-fixer": "^2.2.19",
"nesbot/carbon": "*",
"phpunit/phpunit": "^4.5",
"symfony/yaml": "^2.6",
"zf1/zend-date": "^1.12",
"zf1/zend-registry": "^1.12"
},
"autoload": {
"psr-4": {"DoctrineExtensions\\" : "src/"}
},
"autoload-dev": {
"psr-4": {"DoctrineExtensions\\Tests\\": "tests/"}
}
}