-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
53 lines (53 loc) · 1.25 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
53
{
"name": "lefuturiste/monolog-discord-handler",
"description": "A simple monolog handler for support Discord webhooks",
"type": "library",
"keywords": [
"log",
"logging",
"psr3",
"webhook",
"discord",
"integration",
"monolog"
],
"readme": "README.md",
"license": "MIT",
"homepage": "https://github.com/lefuturiste/monolog-discord-handler",
"authors": [
{
"name": "Matthieu Bessat",
"email": "[email protected]",
"homepage": "https://lefuturiste.fr"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/lefuturiste/monolog-discord-handler/issues",
"source": "https://github.com/lefuturiste/monolog-discord-handler",
"docs": "https://github.com/lefuturiste/monolog-discord-handler/blob/master/README.md"
},
"scripts": {
"test": "vendor/bin/phpunit tests"
},
"require": {
"php": ">=8.1",
"monolog/monolog": "^3.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"vlucas/phpdotenv": "^3.4",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"DiscordHandler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DiscordHandler\\Tests\\": "tests"
}
}
}