-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
62 lines (62 loc) · 1.67 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
{
"name": "yiimaker/yii2-email-templates",
"description": "Extension for creating of email templates and manage using your site dashboard",
"keywords": ["yii2", "module", "gii", "email", "templates", "placeholders"],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"source": "https://github.com/yiimaker/yii2-email-templates",
"issues": "https://github.com/yiimaker/yii2-email-templates/issues"
},
"authors": [
{
"name": "Volodymyr Kupriienko",
"email": "[email protected]",
"role": "Maintainer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=5.6.0",
"yiisoft/yii2": "^2.0.13",
"motion/yii2-language-provider": "~2.1",
"yiimaker/yii2-translatable": "~1.0.1"
},
"require-dev": {
"yiisoft/yii2-gii": "~2.2.0",
"codeception/codeception": "~3.0",
"friendsofphp/php-cs-fixer": "^2.15"
},
"suggest": {
"yiisoft/yii2-bootstrap": "If you want use default view files in backend you should install this package",
"vova07/yii2-imperavi-widget": "If you want use Imperavi editor you should install this package"
},
"autoload": {
"psr-4": {
"ymaker\\email\\templates\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ymaker\\email\\templates\\tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
},
"scripts": {
"test": [
"codecept build",
"codecept run"
],
"cs-check": "php-cs-fixer fix --allow-risky=yes --diff --ansi --dry-run",
"cs-fix": "php-cs-fixer fix --allow-risky=yes --diff --ansi"
}
}