forked from frostealth/yii2-aws-s3
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.12 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
{
"name": "hyperia/yii2-aws-s3",
"type": "yii2-extension",
"description": "An Amazon S3 component for Yii2",
"keywords": ["yii2", "aws", "s3", "aws-s3", "yii2-aws", "yii2-s3"],
"homepage": "https://github.com/hyperia-sk/yii2-aws-s3",
"license": "MIT",
"authors": [
{
"name": "Ivan Kudinov",
"email": "[email protected]",
"homepage": "http://frostealth.ru"
},
{
"name": "Constantine Chuprik",
"email": "[email protected]"
},
{
"name": "Rudolf Krupa",
"email": "[email protected]",
"homepage": "https://www.hyperia.sk"
}
],
"support": {
"issues": "https://github.com/hyperia-sk/yii2-aws-s3/issues?state=open"
},
"require": {
"php": ">=7.0.0",
"aws/aws-sdk-php": "~3.17",
"yiisoft/yii2": "~2.0"
},
"require-dev": {
"phpro/grumphp": "~0.8",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"hyperia\\yii2\\aws\\s3\\": "src/"
}
}
}