forked from MyIntervals/emogrifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
107 lines (107 loc) · 3.26 KB
/
Copy pathcomposer.json
File metadata and controls
107 lines (107 loc) · 3.26 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "pelago/emogrifier",
"description": "Converts CSS styles into inline style attributes in your HTML code",
"keywords": [
"email",
"css",
"pre-processing"
],
"homepage": "https://www.myintervals.com/emogrifier.php",
"license": "MIT",
"authors": [
{
"name": "Oliver Klee",
"email": "github@oliverklee.de"
},
{
"name": "Zoli Szabó",
"email": "zoli.szabo+github@gmail.com"
},
{
"name": "John Reeve",
"email": "jreeve@pelagodesign.com"
},
{
"name": "Jake Hotson",
"email": "jake@qzdesign.co.uk"
},
{
"name": "Cameron Brooks"
},
{
"name": "Jaime Prado"
}
],
"support": {
"issues": "https://github.com/MyIntervals/emogrifier/issues",
"source": "https://github.com/MyIntervals/emogrifier"
},
"require": {
"php": "~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0",
"ext-dom": "*",
"ext-libxml": "*",
"symfony/css-selector": "^3.4.32 || ^4.3.5 || ^5.0"
},
"require-dev": {
"masterminds/html5": "^2.7",
"php-parallel-lint/php-parallel-lint": "^1.2.0",
"slevomat/coding-standard": "^4.0.0",
"squizlabs/php_codesniffer": "^3.5.1"
},
"suggest": {
"masterminds/html5": "Use instead of PHP's built-in DOMDocument for HTML5 support."
},
"autoload": {
"psr-4": {
"Pelago\\Emogrifier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pelago\\Emogrifier\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"php:version": "php -v | grep -Po 'PHP\\s++\\K(?:\\d++\\.)*+\\d++(?:-\\w++)?+'",
"php:fix": "\"./tools/php-cs-fixer.phar\" --config=config/php-cs-fixer.php fix config/ src/ tests/",
"ci:php:lint": "\"vendor/bin/parallel-lint\" config src tests",
"ci:php:sniff": "\"vendor/bin/phpcs\" config src tests",
"ci:php:fixer": "\"./tools/php-cs-fixer.phar\" --config=config/php-cs-fixer.php fix --dry-run -v --show-progress=dots --diff-format=udiff config/ src/ tests/",
"ci:php:md": "\"./tools/phpmd.phar\" src text config/phpmd.xml",
"ci:php:psalm": "\"./tools/psalm.phar\" --show-info=false",
"ci:tests:unit": "\"./tools/phpunit.phar\"",
"ci:tests:html5:unit": "EMOGRIFIER_HTML5=true \"./tools/phpunit.phar\"",
"ci:tests:sof": "\"./tools/phpunit.phar\" --stop-on-failure",
"ci:tests:html5:sof": "EMOGRIFIER_HTML5=true \"./tools/phpunit.phar\" --stop-on-failure",
"ci:tests": [
"@ci:tests:unit",
"@ci:tests:html5:unit"
],
"ci:dynamic": [
"@ci:tests"
],
"ci:static": [
"@ci:php:lint",
"@ci:php:sniff",
"@ci:php:fixer",
"@ci:php:md",
"@ci:php:psalm"
],
"ci": [
"@ci:static",
"@ci:dynamic"
]
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
}
}