-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.66 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.66 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
{
"name": "salines/cakephp-mail-interceptor",
"description": "CakePHP plugin to intercept and redirect outgoing emails to a specified address. Useful for development and staging environments.",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": [
"cakephp",
"cakephp-plugin",
"mail",
"email",
"interceptor",
"development",
"testing"
],
"homepage": "https://github.com/salines/cakephp-mail-interceptor",
"authors": [
{
"name": "Salines",
"homepage": "https://github.com/salines"
}
],
"support": {
"issues": "https://github.com/salines/cakephp-mail-interceptor/issues",
"source": "https://github.com/salines/cakephp-mail-interceptor"
},
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"CakeMailInterceptor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeMailInterceptor\\Test\\": "tests/"
}
},
"extra": {
"installer-name": "CakeMailInterceptor"
},
"scripts": {
"test": "phpunit --colors=always",
"cs": "phpcs -p",
"cbf": "phpcbf -p",
"stan": "phpstan analyse --memory-limit=512M"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}