forked from jacklul/inlinegamesbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.07 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
{
"name": "jacklul/inlinegamesbot",
"type": "project",
"description": "A Telegram bot providing games that can be played in any chat.",
"license": "AGPL-3.0",
"keywords": [
"telegram",
"bot",
"games"
],
"authors": [
{
"name": "Jack'lul",
"email": "[email protected]",
"homepage": "https://jacklul.github.io",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"ext-curl": "*",
"ext-gettext": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ad7six/dsn": "^0.4",
"gettext/gettext": "^4.3",
"jacklul/monolog-telegram": "^1.0",
"longman/ip-tools": "^1.2",
"longman/telegram-bot": "^0.53",
"spatie/emoji": "^1.0",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"jacklul\\inlinegamesbot\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"check-code": [
"\"vendor/bin/phpcs\" -snp --standard=PSR2 --encoding=utf-8 --report-width=150 src/ bin/ public/"
]
}
}