-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 871 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
33
34
35
{
"name": "danydev/n-plus-one-detector",
"type": "project",
"description": "Utility that detects n+1 queries triggered by doctrine orm",
"license": "MIT",
"autoload": {
"psr-4": {
"Danydev\\NPlusOneDetector\\": "src"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/danydev/orm"
}
],
"require": {
"php": "^7.1",
"doctrine/orm": "dev-2.7-initializer-events"
},
"autoload-dev": {
"psr-4": {
"Danydev\\\\NPlusOneDetector\\Test\\Unit\\": "test/unit"
}
},
"require-dev": {
"phpunit/phpunit": "^9.2.5",
"psalm/plugin-phpunit": "^0.10.1",
"squizlabs/php_codesniffer": "^3.5.5",
"vimeo/psalm": "^3.12.2"
},
"config": {
"sort-packages": true
}
}