-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
78 lines (78 loc) · 2.03 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
71
72
73
74
75
76
77
78
{
"name": "phalcon/incubator-mailer",
"description": "Phalcon Incubator Mailer Adapters",
"keywords": [
"framework",
"phalcon",
"incubator",
"mailer",
"SMTP",
"Sendmail",
"PHPMail"
],
"homepage": "https://phalcon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "team@phalcon.io",
"homepage": "https://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/incubator-mailer/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcon/incubator/issues",
"source": "https://github.com/phalcon/incubator-mailer",
"forum": "https://forum.phalcon.io"
},
"require": {
"php": ">=7.4",
"ext-phalcon": "^5.0",
"ext-json": "*",
"phpmailer/phpmailer": "^6.7"
},
"require-dev": {
"phalcon/ide-stubs": "^5.0",
"vlucas/phpdotenv": "^5.5",
"codeception/codeception": "^4.2",
"codeception/module-asserts": "^2.0",
"vimeo/psalm": "^5.9",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
"platform": {
"php": "7.4"
}
},
"autoload": {
"psr-4": {
"Phalcon\\Incubator\\Mailer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phalcon\\Incubator\\Mailer\\Tests\\Unit\\": "tests/unit/",
"Phalcon\\Incubator\\Mailer\\Tests\\Functional\\": "tests/functional/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"archive": {
"exclude": [
"/.github",
"/tests",
".codacy.yml",
".codecov.yml",
"CHANGELOG.md",
"codeception.yml",
"phpcs.xml.dist",
"phpstan.neon.dist",
"phpunit.xml.dist",
"psalm.xml.dist"
]
}
}