forked from steevanb/doctrine-stats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
30 lines (30 loc) · 919 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
{
"name": "steevanb/doctrine-stats",
"license": "MIT",
"description": "Count managed entities and lazy loaded entities, hydration time, etc",
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"steevanb\\DoctrineStats\\Bridge\\": "Bridge",
"steevanb\\DoctrineStats\\Doctrine\\": "Doctrine",
"steevanb\\DoctrineStats\\EventSubscriber\\": "EventSubscriber"
}
},
"config": {
"doctrine/persistence": "<1.3"
},
"require": {
"php" : "^5.4.0 || ^7.0 || ^8.0",
"doctrine/orm": "^2.4.8"
},
"suggest": {
"steevanb/composer-overload-class ^1.0": "Add hydration time to statistics",
"steevanb/php-backtrace ^1.1": "Add backtrace to queries"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/steevanb/doctrine-stats.git"
}
]
}