forked from Stinger-Soft/EntitySearchBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.12 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.12 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
45
46
47
48
{
"name" : "stinger-soft/entity-search-bundle",
"type" : "symfony-bundle",
"description" : "Abstraction Layer to index and search entities",
"keywords" : [
"Search"
],
"homepage" : "http://www.stinger-soft.net",
"authors" : [{
"name" : "Florian Meyer",
"email" : "florian.meyer@stinger-soft.net",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"StingerSoft\\EntitySearchBundle\\" : ""
},
"exclude-from-classmap" : [
"/Tests/"
]
},
"license" : "Apache-2.0",
"require" : {
"php" : ">=7.2",
"ext-json": "*",
"symfony/framework-bundle" : "^4.3||^5.0",
"symfony/property-access" : "^4.3||^5.0",
"symfony/console" : "^4.3||^5.0",
"symfony/form" : "^4.3||^5.0",
"knplabs/knp-components" : "^1.3|^2.0",
"stinger-soft/php-commons" : "^1.0.0"
},
"require-dev" : {
"phpunit/phpunit" : "~7.5.6",
"php-coveralls/php-coveralls" : "~2.1.0",
"doctrine/orm" : "^2.5",
"doctrine/common" : "^2.5",
"symfony/validator" : "^3.4||^4.0||^5.0",
"symfony/phpunit-bridge" : "^3.4||^4.0||^5.0"
},
"extra" : {
"branch-alias" : {
"dev-master" : "1.1.x-dev",
"dev-develop" : "1.2.x-dev"
}
}
}