-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
27 lines (27 loc) · 886 Bytes
/
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
{
"name": "ahmedkhan847/mysqlwithelasticsearch",
"description": "A small package to connect MySQL with Elasticsearch",
"keywords": ["mysql with elasticsearch","search in mysql with elasticsearch","connect mysql with elasticsearch"],
"type": "library",
"require": {
"elasticsearch/elasticsearch": ">=2",
"phpunit/phpunit": "5.*"
},
"license": "MIT",
"authors": [
{
"name": "Ahmed Khan",
"email": "ahmedkhan_847@hotmail.com"
}
],
"autoload": {
"psr-4": {
"SearchElastic\\" : "src/SearchElastic/",
"ElasticSearchClient\\" : "src/ElasticSearchClient/",
"SyncMySql\\" : "src/SyncMySql/",
"MySQLWithElasticsearchExceptions\\" : "src/MySQLWithElasticsearchExceptions/"
}
},
"version": "2.0.0",
"minimum-stability" : "dev"
}