forked from dkd/hosted_solr-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.07 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "hosted-solr/apiclient",
"type": "hosted-solr-php-api-client",
"version": "1.0.0",
"description": "PHP Api Client for hosted-solr.com",
"minimum-stability": "alpha",
"license": "GPL-2.0+",
"keywords": ["typo3", "TYPO3 CMS", "solr", "drupal", "magento"],
"homepage": "http://www.hosted-solr.com",
"authors": [
{
"name": "Timo Schmidt",
"email": "[email protected]"
},
{
"name": "Arthur Rehm",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "v6.1.1"
},
"require-dev": {
"phpunit/phpunit": "4.1.3",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"HostedSolr\\ApiClient\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"HostedSolr\\ApiClient\\Tests\\": "Tests/"
}
},
"config": {
"optimize-autoloader": true
}
}