-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
57 lines (57 loc) · 1.51 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
52
53
54
55
56
57
{
"name": "docler-labs/api-client-generator",
"version": "3.0.0",
"description": "SDK Generator - API Client Generator",
"type": "library",
"license": "MIT",
"keywords": [
"rest",
"api",
"api-client",
"openapi",
"sdk",
"generator",
"api-client-generator"
],
"require": {
"php": ">=8.2",
"ext-dom": "*",
"ext-json": "*",
"ext-xml": "*",
"cebe/php-openapi": "^1.4",
"docler-labs/api-client-exception": "^1.0.1 || ^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/psr7": "^1.6",
"icecave/parity": "^3.0",
"nikic/php-parser": "^4.10",
"nyholm/psr7": "^1.3",
"pimple/pimple": "^3.3",
"psr/container": "^1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"symfony/console": "^5.1",
"symfony/yaml": "^5.1",
"twig/twig": "^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"composer/composer": "^2.1",
"mikey179/vfsstream": "^1.6",
"php-coveralls/php-coveralls": "^2.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"symfony/filesystem": "^5.1"
},
"autoload": {
"psr-4": {
"DoclerLabs\\ApiClientGenerator\\Test\\Unit\\": "test/suite/unit",
"DoclerLabs\\ApiClientGenerator\\Test\\Functional\\": "test/suite/functional",
"DoclerLabs\\ApiClientGenerator\\Test\\Acceptance\\": "test/suite/acceptance",
"DoclerLabs\\ApiClientGenerator\\": "src/"
}
},
"config": {
"sort-packages": true
}
}