-
Notifications
You must be signed in to change notification settings - Fork 88
/
composer.json
33 lines (33 loc) · 979 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
31
32
33
{
"name": "eoghanobrien/php-simple-mail",
"type": "library",
"description": "Provides a simple, chainable wrapper for creating and sending emails using the PHP mail() function.",
"keywords": ["email","php5"],
"homepage": "https://github.com/eoghanobrien/php-simple-mail",
"license": "MIT",
"authors": [
{
"name": "Eoghan O'Brien",
"email": "[email protected]",
"homepage": "http://www.eoghanobrien.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "~2.8"
},
"autoload": {
"classmap": ["class.simple_mail.php"]
},
"scripts": {
"test-build": [
"vendor/bin/phpunit --colors=always",
"vendor/bin/phpcs --standard=Zend class.simple_mail.php",
"php -l class.simple_mail.php"
]
}
}