-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.36 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.36 KB
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
{
"name": "malef/associate",
"description": "This library allows to collect objects through associations and provides entity loading optimizations for Doctrine ORM to address N+1 queries problem.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mariusz Bąk",
"email": "mariusz.alef.bak@gmail.com"
}
],
"config": {
"platform": {
"php": "7.2"
}
},
"require": {
"php": "^7.2",
"symfony/property-access": "^3.0|^4.0|^5.0",
"nicmart/tree": "^0.2.7",
"symfony/options-resolver": "^3.0|^4.0|^5.0"
},
"require-dev": {
"ext-sqlite3": "^7.2",
"doctrine/orm": "^2.4,>=2.4.5",
"webonyx/graphql-php": "^0.9,>=0.9.0",
"phpunit/phpunit": "^7.0",
"friendsofphp/php-cs-fixer": "^2.16.3",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.12",
"symfony/yaml": "^3.0|^4.0|^5.0",
"nelmio/alice": "^3.5",
"overtrue/phplint": "^1.1",
"phpunit/dbunit": "^4.0"
},
"suggest": {
"doctrine/orm": "^2.4,>=2.4.5",
"webonyx/graphql-php": "^0.9,>=0.9.0"
},
"autoload": {
"psr-4": {
"Malef\\Associate\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"Malef\\AssociateTests\\": "tests"
}
}
}