-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1000 Bytes
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1000 Bytes
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
{
"name": "diogogithub/stcp-chatbot",
"description": "Multi-platform STCP chatbot for Telegram, Discord and Matrix.",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.4.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-sodium": "*",
"guzzlehttp/guzzle": "^7.9",
"longman/telegram-bot": "^0.83.1",
"team-reflex/discord-php": "^10.51"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^3.13"
},
"autoload": {
"psr-4": {
"Diogo\\StcpChatbot\\": "src/"
}
},
"scripts": {
"check": [
"@validate-config",
"@lint",
"@test"
],
"validate-config": "composer validate --strict",
"lint": "parallel-lint --exclude vendor .",
"cs": "phpcs",
"test": "phpunit --testdox"
},
"config": {
"sort-packages": true,
"allow-plugins": {}
}
}