-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
32 lines (32 loc) · 883 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
{
"name": "metaclass-nl/filter-bundle",
"type": "symfony-bundle",
"description": "Filter bundle for API Platform, Filter Logic",
"keywords": ["filter", "logic", "wherefilter", "API Platform", "api-platform.com", "Doctrine ORM"],
"license": "MIT",
"authors": [
{
"name": "MetaClass",
"homepage": "http://www.metaclass.nl/"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.2.5",
"symfony/http-kernel": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"api-platform/core": "^2.7 || ^3.0 || ^4.0",
"doctrine/orm": "^2.14 || ^3.0"
},
"require-dev": {
},
"suggest": {
},
"autoload": {
"psr-4": { "Metaclass\\FilterBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Metaclass\\FilterBundle\\Tests\\": "tests/"
}
}
}