Skip to content

Commit

Permalink
composer.json: Support version ^6.0.0 for elasticsearch (#26)
Browse files Browse the repository at this point in the history
* composer.json: Support version ^6.0.0 for elasticsearch

Allow use of the bundle for ElasticSearch/ElasticSearch 6.0.0 and higher

* composer.json: update pipe syntax to the OR operator
  • Loading branch information
Zarthus authored and Oliboy50 committed Apr 9, 2018
1 parent 5ded812 commit 0f9bcba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
],
"require": {
"php": ">=7.0",
"elasticsearch/elasticsearch": "^5.1.0"
"elasticsearch/elasticsearch": "^5.1.0||^6.0.0"
},
"require-dev": {
"atoum/atoum": "^2.8|^3.0",
"atoum/atoum": "^2.8||^3.0",
"m6web/coke": "~1.2.0",
"m6web/symfony2-coding-standard": "~1.2.0",
"symfony/dependency-injection": "^2.3|^3.0",
"symfony/event-dispatcher": "^2.3|^3.0",
"symfony/config": "^2.3|^3.0",
"symfony/yaml": "^2.3|^3.0"
"symfony/dependency-injection": "^2.3||^3.0",
"symfony/event-dispatcher": "^2.3||^3.0",
"symfony/config": "^2.3||^3.0",
"symfony/yaml": "^2.3||^3.0"
},
"autoload": {
"psr-0": { "": "src/" }
Expand Down

0 comments on commit 0f9bcba

Please sign in to comment.