-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
48 lines (48 loc) · 1.35 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "ongr/filter-manager-bundle",
"description": "Filter manager bundle for product lists",
"type": "symfony-bundle",
"homepage": "http://ongr.io",
"license": "MIT",
"authors": [
{
"name": "ONGR team",
"homepage": "http://www.ongr.io"
}
],
"require": {
"php": "^7.0 || ^8.0",
"ongr/elasticsearch-bundle": "^6.0|^7.0|dev-master",
"jms/serializer-bundle": "^2.4|^3.0",
"symfony/twig-bundle": "^3.4|^4.0|^5.0|^6.0",
"symfony/translation": "^3.4|^4.0|^5.0|^6.0",
"symfony/asset": "^3.4|^4.0|^5.0|^6.0",
"twig/twig": "^2",
"symfony/browser-kit": "^3.4|^4.0|^5.4|^6.0",
"symfony/css-selector": "^3.4|^4.0|^5.0|^6.0"
},
"require-dev": {
"monolog/monolog": "~1.0",
"phpunit/phpunit": "~5.0",
"squizlabs/php_codesniffer": "~2.4",
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": { "ONGR\\FilterManagerBundle\\": "" },
"exclude-from-classmap": ["/Test/", "/Tests/"]
},
"autoload-dev": {
"files": [
"Tests/app/AppKernel.php"
],
"psr-4": {
"App\\": "\\Tests\\app\\src\\"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}