-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 918 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 918 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
{
"name": "grayhoax/phpmaxbot",
"type": "framework",
"description": "MAX messenger bot framework written in PHP with full Bot API support.",
"keywords": ["bot", "max", "max-messenger", "max-bot", "bot-api", "php-max"],
"license": "GPL-3.0",
"authors": [
{"name": "GrayHoax"}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0|^10.0"
},
"suggest": {
"psr/log": "For PSR-3 compatible logging support",
"monolog/monolog": "For advanced logging features"
},
"autoload": {
"psr-4": {
"PHPMaxBot\\": "src/"
},
"files": ["src/PHPMaxBot.php"]
},
"autoload-dev": {
"psr-4": {
"PHPMaxBot\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}