-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
75 lines (75 loc) · 1.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "telegram-bot-sdk/addon-manager",
"description": "Addon Manager for Telegram Bot SDK",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"telegram",
"addon",
"telegram addon",
"chatbot",
"telegram chatbot",
"telegram bot sdk",
"telegram-bot-sdk",
"telegram bot addon"
],
"authors": [
{
"name": "Irfaq Syed",
"homepage": "https://github.com/irazasyed"
}
],
"homepage": "https://github.com/telegram-bot-sdk/addon-manager",
"require": {
"php": ">=8.1",
"illuminate/support": "^10 || ^11",
"thecodingmachine/discovery": "^1.2"
},
"require-dev": {
"pestphp/pest": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"rector/rector": "^0.15.24"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Telegram\\Bot\\Addon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Telegram\\Bot\\Addon\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"thecodingmachine/discovery": false
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
},
"laravel": {
"providers": [
"Telegram\\Bot\\Addon\\Laravel\\AddonServiceProvider"
]
}
},
"scripts": {
"refactor": "rector --debug",
"test": [
"@test:lint",
"@test:refactor",
"@test:unit"
],
"test:coverage": "pest --coverage --colors=always",
"test:lint": "parallel-lint . --blame --colors --exclude vendor",
"test:refactor": "rector --dry-run",
"test:unit": "pest --colors=always"
}
}