forked from launchdarkly/php-server-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.11 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": "launchdarkly/launchdarkly-php",
"description": "Official LaunchDarkly SDK for PHP",
"keywords": [
"launchdarkly",
"launchdarkly php"
],
"homepage": "https://github.com/launchdarkly/php-client",
"license": "Apache-2.0",
"authors": [
{
"name": "LaunchDarkly <[email protected]>",
"homepage": "http://launchdarkly.com/"
}
],
"require": {
"monolog/monolog": "^1.6",
"php": ">=5.5",
"psr/log": "^1.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.2.1",
"kevinrob/guzzle-cache-middleware": "^1.4.1",
"phpunit/phpunit": ">=4.8.26 <5.4",
"phpdocumentor/phpdocumentor": "^2.0",
"predis/predis": "^1.0",
"zendframework/zend-serializer": "^2.7"
},
"suggested": {
"guzzlehttp/guzzle": "^6.2.1",
"kevinrob/guzzle-cache-middleware": "^1.4.1",
"predis/predis": "^1.0"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"": "tests/"
}
}
}