-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathcomposer.json
53 lines (53 loc) · 1.15 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": "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.4",
"ext-curl": "*",
"ext-gettext": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"gettext/gettext": "^4.3",
"jacklul/monolog-telegram": "^2.0",
"longman/telegram-bot": "^0.78.0",
"memcachier/php-memcache-sasl": "^1.0",
"spatie/emoji": "^2.0",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"Bot\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"check-code": [
"\"vendor/bin/phpcs\" -snp --standard=PSR2 --encoding=utf-8 --report-width=150 src/ bin/ public/"
],
"post-install-cmd": [
"@php bin/console post-install"
]
}
}