-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
59 lines (59 loc) · 1.3 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
54
55
56
57
58
59
{
"name": "badfarm/zanzara",
"type": "library",
"description": "Asynchronous PHP Telegram Bot Framework",
"keywords": [
"telegram",
"bot",
"reactphp",
"async",
"php"
],
"license": "MIT",
"authors": [
{
"name": "Michele Righetti"
},
{
"name": "Mattia Corradi"
}
],
"scripts": {
"test": "vendor/bin/phpunit"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-readline": "*",
"react/event-loop": "^1.3",
"react/http": "^1.8",
"psr/log": "^1.1",
"psr/container": "^1.1",
"php-di/php-di": "^6.4",
"react/cache": "^1.2",
"php-http/multipart-stream-builder": "^1.2",
"netresearch/jsonmapper": "^4.1",
"clue/http-proxy-react": "^1.8",
"opis/closure": "^3.6"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"symfony/dotenv": "^5.4",
"monolog/monolog": "^2.9"
},
"autoload": {
"psr-4": {
"Zanzara\\": "src/Zanzara"
}
},
"autoload-dev": {
"psr-4": {
"Zanzara\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}