forked from shieldo/SolariumAsyncPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 924 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 924 Bytes
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
{
"name": "shieldo/solarium-async-plugin",
"description": "A package making available a plugin that can fetch Solarium query results as HTTPlug promises, allowing async fetches.",
"keywords": ["solarium", "solr", "php", "httplug", "guzzle", "async"],
"type": "library",
"autoload": {
"psr-4": {
"Shieldo\\": [
"src"
]
}
},
"require": {
"php": "^7",
"solarium/solarium": "^5",
"php-http/httplug": "^1",
"php-http/promise": "^1",
"php-http/guzzle6-adapter": "^1",
"php-http/message-factory": "^1",
"php-http/message": "^1",
"php-http/client-common": "^1"
},
"require-dev": {
"phpunit/phpunit": "~4",
"symfony/event-dispatcher": "^3.4 || ^4.0"
},
"conflict": {
"php-http/message-factory": "<1.0.2"
},
"license": "MIT",
"authors": [
{
"name": "Douglas Greenshields",
"email": "douglas@usemarkup.com"
}
]
}