-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.04 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "naftali100/async_bot",
"type": "library",
"description": "async telegram bots library",
"keywords": [
"async-telegram-bots"
],
"homepage": "https://github.com/naftali100/async_tgbot",
"license": "MIT",
"require": {
"amphp/amp": "^2.6.2",
"amphp/http": "^1.7.1",
"amphp/http-client": "^4.6.3",
"amphp/http-server": "^2.1.8",
"amphp/log": "^1.2",
"amphp/cluster": "^1.0.1",
"amphp/file": "^2.0.4",
"respect/validation": "^2.2.4",
"amphp/http-server-router": "^1.0.2",
"amphp/http-server-static-content": "^1.0.7"
},
"require-dev": {
"phpunit/phpunit": "^9.6.13",
"amphp/phpunit-util": "^2.0"
},
"autoload": {
"psr-4": {
"bot_lib\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"bot_lib\\Test\\": "./tests/"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"test": "composer exec phpunit tests"
}
}