forked from async-aws/aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 2.95 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
58
59
60
61
62
63
64
65
66
67
68
{
"description": "Root repository cannot be installed with composer. Use subpackages like async-aws/s3",
"type": "project",
"license": "MIT",
"require": {
"php": "^7.2.5",
"ext-SimpleXML": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"psr/log": "~1.0",
"symfony/http-client": "^4.4 || ^5.0",
"symfony/http-client-contracts": "^1.0 || ^2.0",
"symfony/process": "^4.4 || ^5.0",
"symfony/service-contracts": "^1.0 || ^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.3",
"league/flysystem": "^1.0.65 || ^2.0.0-alpha.2",
"league/flysystem-adapter-test-utilities": "2.x-dev",
"league/mime-type-detection": "^1.0",
"matthiasnoback/symfony-config-test": "^4.1",
"nette/php-generator": "^3.3",
"nette/utils": "^3.0",
"nyholm/symfony-bundle-test": "^1.6.1",
"symfony/config": "^4.4 || ^5.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/phpunit-bridge": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/finder": "^4.4 || ^5.0"
},
"autoload": {
"psr-4": {
"AsyncAws\\CloudFormation\\": "src/Service/CloudFormation/src",
"AsyncAws\\DynamoDb\\": "src/Service/DynamoDb/src",
"AsyncAws\\CodeGenerator\\": "src/CodeGenerator/src",
"AsyncAws\\Core\\": "src/Core/src",
"AsyncAws\\Flysystem\\S3\\": "src/Integration/Flysystem/S3/src",
"AsyncAws\\Lambda\\": "src/Service/Lambda/src",
"AsyncAws\\S3\\": "src/Service/S3/src",
"AsyncAws\\Ses\\": "src/Service/Ses/src",
"AsyncAws\\Sns\\": "src/Service/Sns/src",
"AsyncAws\\Sqs\\": "src/Service/Sqs/src",
"AsyncAws\\Ssm\\": "src/Service/Ssm/src",
"AsyncAws\\Symfony\\Bundle\\": "src/Integration/Symfony/Bundle/src"
}
},
"autoload-dev": {
"psr-4": {
"AsyncAws\\Test\\": "tests",
"AsyncAws\\CloudFormation\\Tests\\": "src/Service/CloudFormation/tests",
"AsyncAws\\DynamoDb\\Tests\\": "src/Service/DynamoDb/tests",
"AsyncAws\\CodeGenerator\\Tests\\": "src/CodeGenerator/tests",
"AsyncAws\\Core\\Tests\\": "src/Core/tests",
"AsyncAws\\Flysystem\\S3\\Tests\\": "src/Integration/Flysystem/S3/tests",
"AsyncAws\\Lambda\\Tests\\": "src/Service/Lambda/tests",
"AsyncAws\\S3\\Tests\\": "src/Service/S3/tests",
"AsyncAws\\Ses\\Tests\\": "src/Service/Ses/tests",
"AsyncAws\\Sns\\Tests\\": "src/Service/Sns/tests",
"AsyncAws\\Sqs\\Tests\\": "src/Service/Sqs/tests",
"AsyncAws\\Ssm\\Tests\\": "src/Service/Ssm/tests",
"AsyncAws\\Symfony\\Bundle\\Tests\\": "src/Integration/Symfony/Bundle/tests"
}
}
}