This repository has been archived by the owner on Nov 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.55 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
45
46
47
48
49
50
51
{
"name": "nexylan/graylog-sdk",
"description": "A PHP sdk to communicate with the Graylog REST API",
"keywords": ["Graylog", "API", "Symfony"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sullivan SENECHAL",
"email": "soullivaneuh@gmail.com"
}
],
"require": {
"php": "^7.0",
"php-http/client-common": "^1.4 || ^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^1.1 || ^2.0",
"symfony/options-resolver": "^2.8 || ^3.0 || ^4.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.3",
"php-http/guzzle6-adapter": "^1.1 || ^2.0",
"php-http/message": "^1.3",
"sllh/php-cs-fixer-styleci-bridge": "^2.1",
"symfony/dependency-injection": "^2.8 || ^3.0 || ^4.0",
"symfony/http-kernel": "^2.8 || ^3.0 || ^4.0"
},
"suggest": {
"ext-solr": "For Lucene query escaping.",
"internations/solr-utils": "For Lucene query escaping.",
"symfony/dependency-injection": "For Symfony integration as a bundle",
"symfony/http-kernel": "For Symfony integration as a bundle"
},
"minimum-stability": "beta",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": { "Nexy\\Graylog\\": "src" }
},
"autoload-dev": {
"psr-4": { "Nexy\\Graylog\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}