forked from beberlei/DoctrineExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 988 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
30
31
32
{
"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": "^7.1",
"doctrine/orm": "^2.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"nesbot/carbon": "*",
"phpunit/phpunit": "^7.0 || ^8.0",
"symfony/yaml": "^4.2",
"zf1/zend-date": "^1.12",
"zf1/zend-registry": "^1.12"
},
"autoload": {
"psr-4": {"DoctrineExtensions\\" : "src/"}
},
"autoload-dev": {
"psr-4": {"DoctrineExtensions\\Tests\\": "tests/"}
},
"config": {
"sort-packages": true
}
}