-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
56 lines (56 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
{
"name": "narendravaghela/cakephp-mailgun",
"description": "Mailgun plugin for CakePHP - Send emails using Mailgun API",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": ["CakePHP", "Email", "Mailgun"],
"authors": [
{
"name": "Narendra Vaghela",
"homepage": "http://www.narendravaghela.com",
"role": "Author"
},
{
"name": "Community",
"homepage": "https://github.com/narendravaghela/cakephp-mailgun/graphs/contributors"
}
],
"support": {
"source": "https://github.com/narendravaghela/cakephp-mailgun",
"issues": "https://github.com/narendravaghela/cakephp-mailgun/issues"
},
"require": {
"php": ">=7.2",
"cakephp/cakephp": "^4.0.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"cakephp/cakephp-codesniffer": "^4.0",
"phpstan/phpstan": "^0.12",
"codacy/coverage": "^1.4"
},
"autoload": {
"psr-4": {
"Mailgun\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mailgun\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"phpstan": "phpstan analyze src/",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"minimum-stability": "dev"
}