Skip to content

Commit 4cce6c8

Browse files
committed
Initial project setup.
0 parents  commit 4cce6c8

File tree

4 files changed

+1309
-0
lines changed

4 files changed

+1309
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor/

composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
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

Comments
 (0)