-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
30 lines (30 loc) · 895 Bytes
/
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
{
"name": "fustundag/awscw-custom-metrics",
"description": "Send custom metric data to AWS CloudWatch for PHP",
"keywords": ["aws", "amazon", "cloudwatch", "metric", "custom", "data", "alert", "monitor"],
"homepage": "http://github.com/fustundag/awscw-custom-metrics",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fatih Ustundag",
"email": "fatih.ustundag@gmail.com",
"homepage": "http://fatihustundag.com"
}
],
"require": {
"php": ">=5.6",
"ext-memcached": "*",
"aws/aws-sdk-php": "3.*@stable",
"mtdowling/cron-expression": "1.2.*@stable",
"guzzlehttp/guzzle": "6.2.*@stable"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.0.*@stable",
"phpmd/phpmd": "2.6.*@stable",
"codeception/codeception":"3.1.*@stable"
},
"autoload": {
"psr-4": {"AWSCustomMetric\\": "src/AWSCustomMetric"}
}
}