forked from launchdarkly/php-server-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.9 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
52
53
54
55
56
57
58
59
{
"name": "iadvize/launchdarkly-server-sdk",
"description": "Fork of official LaunchDarkly SDK for PHP",
"keywords": [
"launchdarkly",
"launchdarkly php"
],
"homepage": "https://github.com/iadvize/launchdarkly-php-server-sdk",
"license": "Apache-2.0",
"authors": [
{
"name": "iAdvize",
"homepage": "http://iadvize.com/"
},
{
"name": "LaunchDarkly <team@launchdarkly.com>",
"homepage": "http://launchdarkly.com/"
}
],
"require": {
"php": ">=5.5",
"monolog/monolog": "^1.6|^2.0",
"psr/log": "^1.0"
},
"require-dev": {
"aws/aws-sdk-php": "^3.86",
"friendsofphp/php-cs-fixer": "~2.2.19",
"guzzlehttp/guzzle": "^6.2.1",
"kevinrob/guzzle-cache-middleware": "^1.4.1",
"phpdocumentor/phpdocumentor": "^2.0",
"phpunit/phpunit": ">=4.8.26 <5.4",
"predis/predis": "^1.0",
"sensiolabs/consul-php-sdk": ">=2.1 <3.0",
"zendframework/zend-serializer": "^2.7"
},
"suggest": {
"guzzlehttp/guzzle": "(^6.2.1) Required when using GuzzleEventPublisher or the default FeatureRequester",
"kevinrob/guzzle-cache-middleware": "(^1.4.1) Recommended for performance when using the default FeatureRequester",
"predis/predis": "(^1.0) Required when using LDDFeatureRequester",
"aws/aws-sdk-php": "(^3.86) Required when using DynamoDbFeatureRequester",
"sensiolabs/consul-php-sdk": "(>=2.1 <3.0) Required when using ConsulFeatureRequester"
},
"autoload": {
"psr-4": {
"LaunchDarkly\\": "src/LaunchDarkly/"
}
},
"autoload-dev": {
"psr-4": {
"LaunchDarkly\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --diff --verbose"
}
}