-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
41 lines (41 loc) · 1.04 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
{
"name": "flagsmith/flagsmith-php-client",
"type": "library",
"version": "v4.5.0",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ben Rometsch",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-bcmath": "*",
"ext-gmp": "*",
"php-http/discovery": "^1.14",
"psr/simple-cache": ">=1.0",
"psr/http-factory-implementation": "1.0",
"psr/http-client-implementation": "1.0",
"psr/http-message-implementation": "1.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^2.1.0",
"phpunit/phpunit": "^9.5",
"symfony/cache": "^5.4.6",
"friendsofphp/php-cs-fixer": "^3.6",
"doppiogancio/mocked-client": "^3.0"
},
"autoload": {
"psr-4": {
"Flagsmith\\": "src",
"FlagsmithTest\\": "tests"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}