This repository has been archived by the owner on Oct 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
60 lines (60 loc) · 1.58 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
{
"name": "zendframework/zendservice-amazon",
"description": "OOP wrapper for the Amazon web service",
"type": "library",
"keywords": [
"zf2",
"amazon",
"ec2",
"s3",
"simpledb",
"sqs"
],
"homepage": "http://packages.zendframework.com/",
"license": "BSD-3-Clause",
"autoload": {
"psr-4": {
"ZendService\\Amazon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendServiceTest\\Amazon\\": "test/"
}
},
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-http": "^2.6",
"zendframework/zendrest": "~2.0",
"zendframework/zend-crypt": "^2.6 || ^3.2",
"zendframework/zend-json": "^2.6 || ^3.0",
"zendframework/zendxml": "^1.0"
},
"require-dev": {
"malukenho/docheader": "^0.1.5",
"phpunit/phpunit": "^6.0.8 || ^5.7.15",
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-i18n": "~2.0"
},
"suggest": {
"zendframework/zend-uri": "Zend\\Uri component"
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev",
"dev-develop": "2.4.x-dev"
}
},
"scripts": {
"check": [
"@license-check",
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover clover.xml",
"license-check": "vendor/bin/docheader check src/ test/"
}
}