-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.14 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.14 KB
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
{
"name": "flagsmith/flagsmith-php-client",
"type": "library",
"version": "5.1.0",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ben Rometsch",
"email": "ben.rometsch@flagsmith.com"
}
],
"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",
"softcreatr/jsonpath": "^0.10.0 || ^0.11.0 || ^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",
"colinodell/json5": "^3.0"
},
"autoload": {
"psr-4": {
"Flagsmith\\": "src",
"FlagsmithTest\\": "tests"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}