forked from Akollade/mjml-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.06 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
{
"name": "notfloran/mjml-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for MJML",
"keywords": ["mjml", "email"],
"license": "MIT",
"autoload": {
"psr-4": {
"NotFloran\\MjmlBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotFloran\\MjmlBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Floran Brutel",
"email": "me@floran.fr"
}
],
"require": {
"php": ">=7.1.0",
"symfony/process": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/twig-bundle": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^3.4 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.0",
"phpunit/phpunit": "^7.0|^8.0",
"matthiasnoback/symfony-config-test": "^4.1",
"symplify/easy-coding-standard": "^9.0"
},
"scripts": {
"cs-check": "vendor/bin/ecs check tests src",
"cs-fix": "vendor/bin/ecs check tests src --fix"
}
}