-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.04 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": "telepath/telepath",
"description": "PHP Library for creating Telegram Bots",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Telepath\\": "src/"
}
},
"authors": [
{
"name": "Tii",
"email": "mail@tii.one"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"league/container": "^4.2",
"symfony/console": "^6.1",
"vlucas/phpdotenv": "^5.4",
"psr/simple-cache": "^3.0",
"psr/cache": "^3.0",
"psr/log": "^3.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"spatie/ray": "^1.34",
"pestphp/pest": "^1.22",
"symfony/cache": "^6.2",
"pestphp/pest-plugin-faker": "^1.0"
},
"bin": [
"telepathy"
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-main": "v0.13.x-dev"
}
}
}