-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
35 lines (35 loc) · 850 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
34
35
{
"name": "finesse/swiftmailer-defaults-plugin",
"description": "A plugin for SwiftMailer and Symfony that sets default properties for email Messages (from, sender, reply to and so on)",
"keywords": ["swiftmailer", "plugin", "defaults", "symfony"],
"type": "library",
"homepage": "https://github.com/Finesse/SwiftMailerDefaultsPlugin",
"license": "MIT",
"authors": [
{
"name": "Surgie Finesse",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"swiftmailer/swiftmailer": ">=4.0 <7.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.4.3 <8.0",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Finesse\\SwiftMailerDefaultsPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Finesse\\SwiftMailerDefaultsPlugin\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}