-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
37 lines (37 loc) · 1.01 KB
/
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
36
37
{
"name": "artprima/query-filter-bundle",
"description": "An easy way to filter requests in your Symfony 4/5/6 application (that uses Doctrine2 as ORM).",
"keywords": [ "symfony", "doctrine", "query", "filter" ],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Denis Voytyuk",
"email": "ask@artprima.cz"
}
],
"require": {
"php": ">=8.0.0",
"symfony/http-kernel": "^4.4|^5.2|^6.0",
"symfony/dependency-injection": "^4.4|^5.2|^6.0",
"symfony/config": "^4.4|^5.2|^6.0",
"doctrine/orm": "^2.7",
"doctrine/persistence": "^2.0|^3.0",
"sensio/framework-extra-bundle": "^5.1.5|^6.0",
"doctrine/doctrine-bundle": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Artprima\\QueryFilterBundle\\": "./"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\Artprima\\QueryFilterBundle\\": "tests/unit",
"Tests\\Functional\\Artprima\\QueryFilterBundle\\": "tests/functional"
}
}
}