-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.35 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
{
"name": "deslynx/alert-bundle",
"description": "Send alert email service and specialized Monolog handler",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Geordie Vial",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"symfony/mailer": "^5.4 || ^6.0 || ^7.0",
"monolog/monolog": "^2.0 || ^3.0"
}
,
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8.6",
"phpstan/phpstan-symfony": "^1.1",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"DesLynx\\AlertBundle\\": "src/"
}
},
"scripts": {
"cs-fix": "vendor/friendsofphp/php-cs-fixer/php-cs-fixer --show-progress=dots --using-cache=yes -v fix",
"cs-lint": "@cs-fix --dry-run",
"stan": "vendor/bin/phpstan analyse --memory-limit=-1",
"ci": [
"@cs-lint",
"@stan"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}