-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
54 lines (54 loc) · 1.27 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
{
"name": "westacks/telebot",
"description": "Easy way to create Telegram-bots in PHP",
"type": "library",
"homepage": "https://github.com/westacks/telebot",
"license": "MIT",
"authors": [
{
"name": "PunyFlash",
"email": "[email protected]",
"homepage": "https://github.com/PunyFlash"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.0",
"rector/rector": "^0.17"
},
"autoload": {
"psr-4": {
"WeStacks\\TeleBot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WeStacks\\TeleBot\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"testdox": "phpunit --testdox"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"archive": {
"exclude": [
"/.gitignore",
"/.gitattributes",
"/.github",
"/tests",
"/docs",
"/phpunit.xml.dist",
"/rector.php"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}