This repository was archived by the owner on Apr 8, 2026. It is now read-only.
forked from nexylan/graylog-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.52 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.52 KB
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
{
"name": "elevatodigital/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 | ^8.0",
"php-http/client-common": "^2.0",
"php-http/guzzle7-adapter": "^0.1.1",
"php-http/discovery": "^1.0",
"php-http/httplug": "^2.0",
"symfony/options-resolver": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.3",
"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"
}
}
}