-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.34 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
{
"name": "xakki/emailer",
"description": "Email notification service",
"llicense": "proprietary",
"authors": [
{
"name": "Xakki",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.2",
"ext-pdo": "*",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-redis": "*",
"psr/log": "^3.0",
"phpmailer/phpmailer": "^6.7",
"doctrine/dbal": "^3.6",
"doctrine/migrations": "^3.6",
"phroute/phroute": "^2.2",
"monolog/monolog": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"opsway/psr12-strict-coding-standard": "^0.7",
"vimeo/psalm": "^5.7"
},
"scripts": {
"psalm": "psalm",
"phpunit": "phpunit -c phpunit.xml",
"phpstan": "phpstan analyse --memory-limit 1G",
"cs-check": "phpcs .",
"cs-fix": "phpcbf .",
"cs-commit-check": "git diff --name-only --diff-filter=AM origin/master | grep .php | xargs composer cs-check",
"cs-commit-fix": "git diff --name-only --diff-filter=AM origin/master | grep .php | xargs composer cs-fix"
},
"autoload": {
"psr-4": {
"Xakki\\Emailer\\": "src"
}
}
}