forked from OpenBuildings/swiftmailer-css-inliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 859 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
36
{
"name": "openbuildings/swiftmailer-css-inliner",
"description": "Inline the css of your html emails",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ivan Kerin",
"email": "[email protected]",
"role": "Author"
}
],
"require" : {
"php": "^7.1",
"swiftmailer/swiftmailer": "^5.1 || ^6.0",
"tijsverkoyen/css-to-inline-styles": "^2.1"
},
"require-dev" : {
"symfony/css-selector": "^2.0.5|^3.0",
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {
"Openbuildings\\Swiftmailer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Openbuildings\\Swiftmailer\\Test\\": "tests/src/"
}
},
"config": {
"platform": {
"php": "7.1.8"
}
}
}