-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1008 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name" : "stinger-soft/doctrine-entity-search-bundle",
"type" : "symfony-bundle",
"description" : "Doctrine Layer to index and search entities",
"keywords" : [
"Search"
],
"homepage" : "http://www.stinger-soft.net",
"authors" : [{
"name" : "Florian Meyer",
"email" : "[email protected]",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"StingerSoft\\DoctrineEntitySearchBundle\\" : ""
},
"exclude-from-classmap" : [
"/Tests/"
]
},
"license" : "Apache-2.0",
"require" : {
"php" : ">=7.4",
"stinger-soft/entity-search-bundle" : "^1.2@dev",
"knplabs/knp-paginator-bundle" : "^5.0",
"stinger-soft/php-commons" : "^1.0"
},
"require-dev" : {
"phpunit/phpunit" : "^9.5",
"php-coveralls/php-coveralls" : "^2.5",
"symfony/phpunit-bridge" : "^5.0||^6.0"
},
"extra" : {
"branch-alias" : {
"dev-master" : "1.2.x-dev",
"dev-develop" : "2.0.x-dev"
}
},
"config": {
"allow-plugins": {
"ocramius/package-versions": false
}
}
}