We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 4cce6c8Copy full SHA for 4cce6c8
.gitignore
@@ -0,0 +1 @@
1
+vendor/
composer.json
@@ -0,0 +1,27 @@
+{
2
+ "name": "zumba/elasticsearch-index-rotate",
3
+ "description": "Safely rotate indexes with no downtime to end users.",
4
+ "authors": [
5
+ {
6
+ "name": "Chris Saylor",
7
+ "email": "cjsaylor@gmail.com"
8
+ }
9
+ ],
10
+ "license": "MIT",
11
+ "require": {
12
+ "psr/log": "^1.0"
13
+ },
14
+ "autoload": {
15
+ "psr-4": {
16
+ "Zumba\\ElasticsearchRotator\\": "src/"
17
18
19
+ "suggest": {
20
+ "monolog/monolog": "Allows more advanced logging of the application flow"
21
22
+ "require-dev": {
23
+ "phpunit/phpunit": "4.8.23",
24
+ "zumba/elasticsearchunit": "^1.3",
25
+ "elasticsearch/elasticsearch": "^2.1"
26
27
+}
0 commit comments