-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.41 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "dingo-d/php-mjml-renderer",
"type": "library",
"description": "PHP renderer for MJML language",
"keywords": [
"mjml",
"renderer",
"email"
],
"homepage": "https://github.com/dingo-d/php-mjml-renderer",
"license": "MIT",
"authors": [
{
"name": "Denis Žoljom",
"homepage": "https://madebydenis.com",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/dingo-d/php-mjml-renderer/graphs/contributors"
}
],
"require": {
"php": ">=7.4",
"ext-simplexml": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"pestphp/pest": "^1.22",
"phpstan/phpstan": "^1.9",
"phpcompatibility/php-compatibility": "^9.3",
"captainhook/captainhook": "^5.11",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
"autoload": {
"psr-4": {
"MadeByDenis\\PhpMjmlRenderer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MadeByDenis\\PhpMjmlRenderer\\Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": "vendor/bin/captainhook install -f -s",
"test:types": "@php ./vendor/bin/phpstan",
"test:style": "@php ./vendor/bin/phpcs",
"test:unit": "@php ./vendor/bin/pest",
"test:coverage": "@php ./vendor/bin/pest --coverage",
"test": [
"@test:style",
"@test:types",
"@test:unit"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}