-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 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
{
"prefer-stable": true,
"name": "erebot/wordlists-module",
"description": "Erebot module that provides reusable lists of words for other modules",
"keywords": ["Erebot", "IRC", "bot", "module"],
"homepage": "https://github.com/Erebot/Module_Wordlists",
"license": "GPL-3.0+",
"authors": [
{
"name": "François Poirotte",
"email": "clicky@erebot.net",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/Erebot/Module_Wordlists/issues",
"irc": "irc://irc.iiens.net/Erebot",
"source": "https://github.com/Erebot/Module_Wordlists"
},
"require": {
"php": ">=7.0",
"ext-PDO": "*",
"ext-pdo_sqlite": "*",
"ext-intl": "*",
"erebot/api": "^0.9.0"
},
"require-dev": {
"erebot/buildenv": "^1.5.0",
"erebot/testenv": "^2.0.0"
},
"autoload": {
"psr-4": {
"Erebot\\Module\\": "src/"
}
},
"bin": ["bin/wordlist-converter"],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}