forked from jacklul/inlinegamesbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.03 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": "jacklul/inlinegamesbot",
"description": "A Telegram bot providing games that can be played in any chat.",
"authors": [
{
"name": "Jack'lul",
"email": "[email protected]",
"homepage": "https://jacklul.com"
}
],
"type": "project",
"require": {
"php": "^7.1.0",
"ext-curl": "*",
"ext-gettext": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pgsql": "*",
"ext-zip": "*",
"ad7six/dsn": "^0.4.0",
"gettext/gettext": "^4.3.0",
"longman/ip-tools": "^1.2",
"longman/telegram-bot": "^0.49.0",
"spatie/emoji": "^1.0.5",
"vlucas/phpdotenv": "^2.4.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": {
"Bot\\": "src/"
},
"classmap": [
"src/Bot.php"
]
},
"config": {
"sort-packages": true,
"vendor-dir": "lib/"
},
"scripts": {
"check-code": [
"php lib/squizlabs/php_codesniffer/scripts/phpcs --standard=PSR2 -snp --encoding=utf-8 src/ --report-width=120"
]
}
}