-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.11 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
{
"name": "telepath/telepath",
"description": "PHP Library for creating Telegram Bots",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Telepath\\": "src/",
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Tii",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"league/container": "^4.2",
"symfony/console": "^6.1 | ^7.0",
"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.41.1",
"pestphp/pest": "^2.34.4",
"symfony/cache": "^6.2",
"laravel/pint": "^1.13",
"pestphp/pest-plugin-faker": "^2.0"
},
"bin": [
"telepathy"
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-main": "v0.30.x-dev"
}
}
}