-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
31 lines (31 loc) · 946 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
{
"name": "xsolve-pl/associate",
"description": "This library allows to collect objects and values through associations and provides some entity fetching optimizations for Doctrine ORM to address N+1 queries problem.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mariusz Bąk",
"email": "[email protected]"
}
],
"require": {
"symfony/property-access": "^3.0|^4.0|^5.0|^6.0"
},
"require-dev": {
"doctrine/orm": "^2.4,>=2.4.5",
"phpunit/phpunit": "^6.3|^7.0|^8.0|^9.0",
"friendsofphp/php-cs-fixer": "^2.7",
"phpmd/phpmd": "^2.6"
},
"suggest": {
"doctrine/orm": "^2.4,>=2.4.5",
"webonyx/graphql-php": "^0.0,>=0.9"
},
"autoload": {
"psr-4": { "Xsolve\\Associate\\": "lib" }
},
"autoload-dev": {
"psr-4": { "Xsolve\\AssociateTests\\": "tests" }
}
}