-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
70 lines (70 loc) · 2.01 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
64
65
66
67
68
69
70
{
"name": "sprintcube/cakephp-sendgrid",
"description": "SendGrid plugin for CakePHP 4 - Send emails using SendGrid API",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": [
"CakePHP",
"Email",
"SendGrid"
],
"authors": [
{
"name": "SprintCube",
"homepage": "https://www.sprintcube.com",
"role": "Author"
},
{
"name": "Narendra Vaghela",
"homepage": "https://www.sprintcube.com",
"role": "Author"
},
{
"name": "Community",
"homepage": "https://github.com/sprintcube/cakephp-sendgrid/graphs/contributors"
}
],
"support": {
"source": "https://github.com/sprintcube/cakephp-sendgrid",
"issues": "https://github.com/sprintcube/cakephp-sendgrid/issues"
},
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3",
"cakephp/cakephp-codesniffer": "^4.0",
"phpstan/phpstan": "^0.12",
"codacy/coverage": "^1.4"
},
"autoload": {
"psr-4": {
"SendGrid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SendGrid\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p src/ tests/TestCase/",
"cs-fix": "phpcbf --colors src/ tests/TestCase/",
"psalm": "psalm",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.12 vimeo/psalm:~4.1.0 && mv composer.backup composer.json",
"phpstan": "phpstan analyze --level 1 src/",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}