-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 801 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 801 Bytes
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
{
"name": "valgorithms/discord-php-eventlogger",
"description": "DiscordPHP EventLogger is a tool designed to generate guild specific logs for the DiscordPHP API Library.",
"keywords": ["discordphp", "discord", "php", "event logger", "logging"],
"license": "MIT",
"authors": [
{
"name": "Valithor Obsidion",
"email": "valithor@valzargaming.com"
}
],
"require": {
"php": ">=8.0",
"team-reflex/discord-php": "^10.0.0 || dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"EventLogger\\": "src/EventLogger/",
"EmbedBuilder\\": "src/EmbedBuilder/",
"MessageBuilderHelper\\": "src/MessageBuilderHelper/"
}
}
}