forked from daniel-zahariev/php-aws-ses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 862 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": "daniel-zahariev/php-aws-ses",
"description": "Send emails via Amazon Simple Email Service (SES) with REST-like interface",
"keywords": ["amazon", "email","aws","ses", "api", "rest"],
"homepage": "https://github.com/daniel-zahariev/php-aws-ses",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Daniel Zahariev",
"role": "developer"
}
],
"autoload": {
"classmap": ["src/"]
},
"require": {
"php": ">=5.0.0",
"ext-curl": "*",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"phpunit/php-code-coverage": "^6.0",
"fzaninotto/faker": "^1.7",
"phpspec/prophecy": "~1.0"
}
}