-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.39 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
{
"name": "jitesoft/moxter",
"description": "Mini API to proxy email request to a SMTP server. Intended to be used by applications not able to store their secret data safely.",
"type": "project",
"require": {
"php": ">=7.4",
"ext-json": ">=7.4",
"ext-openssl": ">=7.4",
"vlucas/phpdotenv": "^4.1",
"symfony/yaml": "5.0.*",
"nesbot/carbon": "^2.34",
"laminas/laminas-diactoros": "^2.2",
"phpmailer/phpmailer": "^6.1",
"jitesoft/container": "^4.0",
"jitesoft/exceptions": "^2.3",
"jitesoft/validator": "^0.2",
"hrafn/router": "0.4.*",
"jitesoft/loggers": "^2.0"
},
"scripts": {
"test": "phpunit --config=phpunit.xml && phpcs --report=summary --standard=style.xml src/",
"sniff": " phpcs --standard=style.xml src/"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5"
},
"license": "mit",
"authors": [
{
"name": "Johannes Tegnér",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jitesoft\\Moxter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jitesoft\\Moxter\\Tests\\": "tests/"
}
}
}