-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (43 loc) · 1.19 KB
/
composer.json
File metadata and controls
44 lines (43 loc) · 1.19 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
{
"name": "maltehuebner/dataquery-bundle",
"type": "library",
"require": {
"php": "^8.3",
"ruflin/elastica": "^7.0",
"symfony/framework-bundle": "^4.0|^5.0|^6.0|^7.0|^8.0",
"symfony/validator": "^4.0|^5.0|^6.0|^7.0|^8.0"
},
"suggest": {
"doctrine/orm": "To use the Doctrine ORM integration",
"beberlei/doctrineextensions": "To use the Doctrine Extensions integration",
"friendsofsymfony/elastica-bundle": "To use the FOS Elastica Bundle integration"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.2",
"doctrine/orm": "^3.6",
"doctrine/persistence": "^4.1",
"phpstan/phpstan": "^1.12"
},
"autoload": {
"psr-4": {
"MalteHuebner\\DataQueryBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MalteHuebner\\DataQueryBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Malte Huebner",
"email": "maltehuebner@gmx.org"
}
],
"minimum-stability": "stable",
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse"
}
}