-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
51 lines (51 loc) · 1.78 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": "configcat/configcat-client",
"type": "library",
"description": "ConfigCat is a feature flag, feature toggle, and configuration management service. That lets you launch new features and change your software configuration remotely without actually (re)deploying code. ConfigCat even helps you do controlled roll-outs like canary releases and blue-green deployments.",
"keywords": ["configcat", "feature flag", "feature toggle", "user targeting"],
"homepage": "https://github.com/configcat/php-sdk",
"license": "MIT",
"authors": [
{
"name": "ConfigCat",
"email": "[email protected]",
"homepage": "https://configcat.com"
}
],
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.0",
"psr/log": "^2.0|^3.0",
"ext-json": "*",
"z4kn4fein/php-semver": "^2.0",
"psr/http-client": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"illuminate/cache": "^9.0",
"psr/simple-cache": "^3.0",
"psr/cache": "^1.0",
"phpstan/phpstan": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"ConfigCat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ConfigCat\\Tests\\": "tests/"
}
},
"suggest": {
"psr/cache": "When using any PSR6 Cache implementation, a pre-built cache adapter \\ConfigCat\\Psr6Cache can be used as the main cache of the library.",
"psr/simple-cache": "When using any PSR16 SimpleCache implementation, a pre-built cache adapter \\ConfigCat\\Psr16Cache can be used as the main cache of the library.",
"laravel/framework": "When using laravel, a pre-built cache adapter \\ConfigCat\\LaravelCache can be used as the main cache of the library."
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": false
}
}
}