This repository has been archived by the owner on Aug 3, 2018. It is now read-only.
forked from Lakion/SyliusElasticSearchBundle
-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
59 lines (59 loc) · 2 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
{
"name": "sylius/elastic-search-plugin",
"type": "sylius-bundle",
"description": "Elastic search integration for Sylius.",
"license": "MIT",
"authors": [
{
"name": "Arkadiusz Krakowiak",
"email": "[email protected]",
"homepage": "http://github.com/arminek"
}
],
"require": {
"php": "^7.1",
"sylius/sylius": "^1.0",
"ongr/elasticsearch-dsl": "^5.0",
"ongr/elasticsearch-bundle": "^5.0",
"simple-bus/symfony-bridge": "^4.1",
"ongr/filter-manager-bundle": "2.1.x-dev as v2.1.1",
"ramsey/uuid": "^3.7"
},
"require-dev": {
"behat/behat": "^3.2",
"behat/mink": "^1.7",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.2",
"friends-of-behat/context-service-extension": "^0.3",
"friends-of-behat/cross-container-extension": "^0.2",
"friends-of-behat/performance-extension": "^1.0",
"friends-of-behat/service-container-extension": "^0.3",
"friends-of-behat/symfony-extension": "^0.2.1",
"friends-of-behat/variadic-extension": "^0.1",
"lakion/mink-debug-extension": "^1.2.3",
"matthiasnoback/symfony-config-test": "^2.1",
"matthiasnoback/symfony-dependency-injection-test": "^1.1",
"php-http/guzzle6-adapter": "^1.1",
"phpspec/phpspec": "^3.2",
"phpunit/phpunit": "^5.6",
"behat/mink-selenium2-driver": "^1.3",
"lakion/api-test-case": "^1.1",
"doctrine/common": "<2.8",
"symplify/easy-coding-standard": "^2.4",
"sylius-labs/coding-standard": "^1.0"
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Sylius\\ElasticSearchPlugin\\": "src/",
"Tests\\Sylius\\ElasticSearchPlugin\\": "tests/"
}
},
"autoload-dev": {
"classmap": ["tests/Application/app/AppKernel.php"]
}
}