-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
29 lines (29 loc) · 898 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
{
"name": "ggergo/sqlindexhintbundle",
"description": "Doctrine SqlWalker extension to apply USE INDEX and FORCE INDEX hints using DQL on top of MySql. Works with both createQuery and createQueryBuilder.",
"keywords": ["force", "use", "index", "forceindex", "useindex", "doctrine", "dql", "mysql", "createQueryBuilder", "QueryBuilder", "createQuery"],
"license": "MIT",
"authors": [
{
"name": "Gergő Gänszler",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"doctrine/orm": "^2.6 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^9"
},
"autoload": {
"psr-4": {
"Ggergo\\SqlIndexHintBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Ggergo\\SqlIndexHintBundle\\Tests\\": "Tests/"
}
}
}