-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 957 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 957 Bytes
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
{
"version": "2.2.1",
"description": "DevCycle PHP Server SDK",
"keywords": [
"openapitools",
"openapi-generator",
"openapi",
"php",
"sdk",
"rest",
"api"
],
"homepage": "https://devcycle.com",
"license": "MIT",
"name": "devcycle/php-server-sdk",
"authors": [
{
"name": "DevCycle",
"homepage": "https://devcycle.com"
}
],
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.9.2",
"guzzlehttp/psr7": "^2.7.0",
"open-feature/sdk": "^2.0.10"
},
"require-dev": {
"phpunit/phpunit": "^10.5.45",
"friendsofphp/php-cs-fixer": "^v3.71.0"
},
"autoload": {
"psr-4": { "DevCycle\\" : "lib/" }
},
"autoload-dev": {
"psr-4": { "DevCycle\\Test\\" : "test/" }
}
}