-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 1.22 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
{
"name": "harness/ff-server-sdk",
"description": "PHP Server SDK for integrating with Harness Feature Flag service.",
"keywords":[
"harness",
"harness featureflags",
"harness ff",
"harness php"
],
"homepage": "https://github.com/harness/ff-php-server-sdk",
"type": "library",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Harness\\": "src/Harness/"
}
},
"authors": [
{
"name": "Bryan Jen",
"email": "[email protected]"
},
{
"name": "Enver Bisevac",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/harness/ff-php-client-api.git"
}
],
"require": {
"php": ">=7.4",
"harness/ff-php-client-api": "*@dev",
"cache/filesystem-adapter": "^1.2",
"monolog/monolog": "2.6.0",
"psr/log": "1.1.4",
"psr/cache": "1.0.1",
"symfony/deprecation-contracts": "2.2",
"gmponos/guzzle_logger": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}