-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
23 lines (23 loc) · 784 Bytes
/
composer.json
File metadata and controls
23 lines (23 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "ulff/elasticsearch-php-client-bundle",
"type": "symfony-bundle",
"description": "A very simple bundle for integrating Symfony2.x/3.x with Elasticsearch-PHP 5.0",
"keywords": ["elastic", "elasticsearch", "elasticsearch-php", "symfony3", "symfony2", "bundle", "php7", "php5"],
"license": "MIT",
"authors": [
{
"name": "Olaf Gałązka",
"email": "ulff.pl@gmail.com",
"homepage": "http://ulff.pl/"
}
],
"require": {
"php": ">=5.5",
"symfony/framework-bundle": "~2.1|~3.0|~4.0",
"elasticsearch/elasticsearch": "~5.0"
},
"autoload": {
"psr-4": { "Ulff\\ElasticsearchPhpClientBundle\\": "" },
"exclude-from-classmap": ["/Tests/", "/Test/"]
}
}