-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 1.88 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 1.88 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
{
"name": "jturbide/form-to-email",
"description": "A lightweight PHP 8.4+ library to process form submissions, validate fields, and send structured email notifications with configurable templates and error codes.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"form",
"email",
"contact-form",
"mail",
"phpmailer",
"validation",
"microservice",
"form-to-email",
"email-a-form"
],
"authors": [
{
"name": "Julien Turbide",
"email": "moi@jturbide.com",
"homepage": "https://www.julienturbide.com"
}
],
"homepage": "https://github.com/jturbide/form-to-email",
"support": {
"issues": "https://github.com/jturbide/form-to-email/issues",
"source": "https://github.com/jturbide/form-to-email"
},
"require": {
"php": ">=8.4",
"ext-mbstring": "*",
"ext-intl": "*",
"phpmailer/phpmailer": "^7.0.0"
},
"autoload": {
"psr-4": {
"FormToEmail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FormToEmail\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"lint": "phpcs --standard=phpcs.xml",
"lint:fix": "phpcbf --standard=phpcs.xml",
"analyse:psalm": "psalm --output-format=compact",
"analyse:phpstan": "phpstan analyse --memory-limit=1G",
"qa": [
"@lint",
"@analyse:psalm",
"@analyse:phpstan",
"@test"
],
"build-phar": "php -d phar.readonly=0 ./build-phar.php"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"archive": {
"exclude": [
"/tests",
"/docs",
"/examples",
"/.github",
"/build-phar.php"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^12.4"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}