-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.88 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.88 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
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
{
"name": "mxrvx/telegram-bot-auth",
"type": "library",
"license": "MIT",
"description": "Telegram bot Auth for MODX Revolution",
"keywords": [
"MODX",
"Revolution"
],
"authors": [
{
"name": "Vgrish",
"email": "vgrish@gmail.com"
}
],
"support": {
"issues": "https://github.com/mxrvx/telegram-bot-auth/issues",
"source": "https://github.com/mxrvx/telegram-bot-auth",
"docs": "https://github.com/mxrvx/telegram-bot-auth",
"chat": "https://t.me/mxrvx_official"
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"ext-openssl": "*",
"php-di/slim-bridge": "^3.4.0",
"slim/psr7": "^1.6.0",
"slim/slim": "^4.14.0",
"league/flysystem": "^2.5.0|^3.29.0",
"peppeocchi/php-cron-scheduler": "^4.0",
"ably/ably-php": "^1.1",
"ramsey/uuid": "^4.7.5",
"mxrvx/autoloader": "^0.1.13",
"mxrvx/orm": "^0.1.5",
"mxrvx/orm-modx-entities": "^0.1.1",
"mxrvx/telegram-bot": "^v0.1.9"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^6.0.0",
"mxrvx/code-style": "^1.0.0",
"modx/revolution": "v3.0.0-pl"
},
"autoload": {
"psr-4": {
"MXRVX\\Telegram\\Bot\\Auth\\": "core/src/"
}
},
"bin": [
"bin/mxrvx-telegram-bot-auth"
],
"config": {
"sort-packages": true,
"allow-plugins": false
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"psalm": "psalm --no-cache",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "phpunit --color=always"
}
}