-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.15 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "async-aws/code-generator",
"description": "Generate API client code",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-simplexml": "*",
"friendsofphp/php-cs-fixer": "~3.60.0",
"nette/php-generator": "^3.6 || ^4.1",
"nette/utils": "^3.0 || ^4.0",
"nikic/php-parser": "^4.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/http-client-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"symfony/service-contracts": "^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5.42",
"symfony/error-handler": "^7.3.2 || ^8.0",
"symfony/phpunit-bridge": "^7.3.2 || ^8.0"
},
"autoload": {
"psr-4": {
"AsyncAws\\CodeGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AsyncAws\\CodeGenerator\\Tests\\": "tests/"
}
}
}