-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.6 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
{
"name": "zfr/zfr-aws-utils",
"type": "library",
"license": "MIT",
"description" : "Container factories and utility classes for use with aws-php-sdk",
"keywords": [
"aws",
"aws-php-sdk"
],
"homepage": "https://github.com/zf-fr/zfr-aws-utils",
"authors": [
{
"name": "Daniel Gimenes",
"email": "[email protected]"
},
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
}
],
"require": {
"php": "^7.1",
"aws/aws-sdk-php": "^3.22",
"beberlei/assert": "^2.5",
"psr/container": "^1.0",
"doctrine/cache": "^1.6"
},
"require-dev": {
"malukenho/docheader": "^0.1.5",
"phpunit/phpunit": "^6.0",
"squizlabs/php_codesniffer": "^2.7",
"zendframework/zend-coding-standard": "^1.0",
"zendframework/zend-servicemanager": "^3.2"
},
"autoload": {
"psr-4": {
"ZfrAwsUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfrAwsUtilsTest\\": "test/"
}
},
"scripts": {
"check": [
"@test",
"@cs-check",
"@license-check"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"license-check": "vendor/bin/docheader check config src test "
},
"extra": {
"zf": {
"config-provider": [
"ZfrAwsUtils\\ConfigProvider"
]
}
}
}