-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.22 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": "miamibc/joker-telegram-bot",
"description": "Joker the Telegram bot",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Sergei Miami",
"email": "[email protected]",
"homepage": "https://blackcrystal.net",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-gd": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-intl": "*",
"ext-iconv": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-sockets": "*",
"ext-pcntl": "*",
"vlucas/phpdotenv": "^3.4",
"alrik11es/cowsayphp": "^1.2",
"league/html-to-markdown": "^4.9",
"gabordemooij/redbean": "dev-master",
"cheprasov/php-redis-client": "^1.10",
"mnapoli/silly": "^1.7",
"guzzlehttp/guzzle": "^7.3",
"imangazaliev/didom": "^1.18",
"wamania/php-stemmer": "^3.0",
"nesbot/carbon": "^2.72"
},
"autoload": {
"psr-4": {
"Joker\\": "src\\"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.4"
},
"scripts": {
"test": "php vendor/bin/phpunit",
"test-github": "php vendor/bin/phpunit --testdox --exclude-group=exclude-from-github-test"
}
}