-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
109 lines (108 loc) · 2.92 KB
/
composer.json
File metadata and controls
109 lines (108 loc) · 2.92 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "apeli/apelimailers",
"description": "A lightweight, dependency-free PHP email library with SMTP, templating, queues, and analytics",
"type": "library",
"license": "MIT",
"keywords": [
"email",
"smtp",
"mailer",
"mail",
"queue",
"analytics",
"tracking",
"php"
],
"homepage": "https://github.com/ApeliDev/ApeliMailers",
"authors": [
{
"name": "Livingstone Apeli",
"email": "livingstoneapeli@gmail.com",
"homepage": "https://apelisolutions.com",
"role": "Software Developer"
}
],
"support": {
"email": "livingstoneapeli@gmail.com",
"issues": "https://github.com/ApeliDev/ApeliMailers/issues",
"docs": "https://github.com/ApeliDev/ApeliMailers/wiki",
"source": "https://github.com/ApeliDev/ApeliMailers"
},
"funding": [
{
"type": "lipia online",
"url": "https://lipia-online.vercel.app/link/Apelisolutions"
}
],
"autoload": {
"psr-4": {
"ApeliMailers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApeliMailers\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-openssl": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.4",
"phpstan/phpstan": "^1.9",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.4"
},
"suggest": {
"twig/twig": "For template rendering support",
"guzzlehttp/guzzle": "Required for SendGrid/Mailgun webhooks",
"ext-curl": "Alternative for webhook delivery",
"predis/predis": "For Redis queue support"
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"lint": "phpcs --standard=PSR12 src tests",
"fix": "phpcbf --standard=PSR12 src tests",
"analyse": "phpstan analyse",
"psalm": "psalm",
"check": [
"@lint",
"@analyse",
"@psalm",
"@test"
],
"post-install-cmd": [
"@composer dump-autoload"
],
"post-update-cmd": [
"@composer dump-autoload"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"platform-check": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": [
"/tests",
"/.github",
"/examples",
".gitignore",
"phpstan.neon",
"psalm.xml"
]
}
}