forked from pmishev/ElasticsearchBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
65 lines (62 loc) · 2.21 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "sineflow/elasticsearch-bundle",
"description": "Bundle for integrating the official Elasticsearch client with Symfony",
"type": "symfony-bundle",
"homepage": "https://github.com/sineflow/ElasticsearchBundle",
"license": "MIT",
"authors": [
{
"name": "Plamen Mishev",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"psr/log": "^1.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/options-resolver": "^4.4 || ^5.0",
"symfony/config": "^4.4 || ^5.0",
"symfony/event-dispatcher": "^4.4 || ^5.0",
"symfony/translation": "^4.4 || ^5.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.2",
"doctrine/annotations": "^1.2",
"doctrine/cache": "^1.4",
"elasticsearch/elasticsearch": "^7.0"
},
"require-dev": {
"symfony/debug": "^4.4 || ^5.0",
"symfony/stopwatch": "^4.4 || ^5.0",
"symfony/phpunit-bridge": "^4.4 || ^5.0",
"symfony/browser-kit": "^4.4 || ^5.0",
"symfony/dotenv": "^4.4 || ^5.0",
"doctrine/orm": "^2.6.3",
"monolog/monolog": "^1.0|^2.0|^3.0",
"knplabs/knp-paginator-bundle": "^4.0 || ^5.0",
"friendsofphp/php-cs-fixer": "^3.34",
"php-coveralls/php-coveralls": "^2.1",
"escapestudios/symfony2-coding-standard": "^3.0",
"jchook/phpunit-assert-throws": "^1.0",
"dms/phpunit-arraysubset-asserts": "^0.2.1"
},
"suggest": {
"monolog/monolog": "Allows for client-level logging and tracing",
"knplabs/knp-paginator-bundle": "Allows for search results to be paginated",
"doctrine/orm": "Allows for using Doctrine as source for rebuilding indices"
},
"autoload": {
"psr-4": {
"Sineflow\\ElasticsearchBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sineflow\\ElasticsearchBundle\\Tests\\": "tests/",
"Sineflow\\ElasticsearchBundle\\Tests\\App\\Fixture\\": "tests/App/fixture/"
}
},
"config": {
"prepend-autoloader": false
}
}