-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.26 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
{
"name": "vanio/easy-mailer",
"description": "Easy peasy e-mail sending from PHP applications.",
"keywords": ["e-mail", "e-mail sending"],
"homepage": "https://github.com/vaniocz/easy-mailer",
"license": "MIT",
"authors": [
{"name": "Adam Hojka"}
],
"require": {
"php": "^7.0",
"pelago/emogrifier": "^1.2 || ^2.0 || ^3.0",
"html2text/html2text": "^4.0",
"swiftmailer/swiftmailer": "^5.4 || ^6.0",
"twig/twig": "^1.24 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"vanio/coding-standards": "^0.1"
},
"autoload": {
"psr-4": {"Vanio\\EasyMailer\\": "src/"},
"exclude-from-classmap": ["/tests/"]
},
"autoload-dev": {
"psr-4": {"Vanio\\EasyMailer\\Tests\\": "tests/"}
},
"scripts": {
"test": "\"vendor/bin/phpunit\"",
"lint": "\"vendor/bin/phpcs\" --standard=ruleset.xml --extensions=php --encoding=utf-8 --ignore=vendor .",
"fix": "\"vendor/bin/phpcbf\" --standard=ruleset.xml --extensions=php --encoding=utf-8 --no-patch --ignore=vendor ."
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}