mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-17 23:10:03 +00:00
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "bushlanov-dev/max-bot-api-client-php",
|
|
"description": "Max Bot API Client library",
|
|
"keywords": ["max messenger", "bot", "max", "api"],
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Aleksandr Bushlanov",
|
|
"email": "alex@bushlanov.dev",
|
|
"homepage": "https://bushlanov.dev",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.3",
|
|
"ext-json": "*",
|
|
"guzzlehttp/guzzle": "^6.5.8||^7.0",
|
|
"guzzlehttp/psr7": "^1.8||^2.0",
|
|
"psr/http-client": "^1.0",
|
|
"psr/http-factory": "^1.0",
|
|
"psr/http-message": "^1.0||^2.0"
|
|
},
|
|
"require-dev": {
|
|
"roave/security-advisories": "dev-latest",
|
|
"phpunit/phpunit": "^12.0",
|
|
"phpstan/phpstan": "^2.1",
|
|
"friendsofphp/php-cs-fixer": "^3.77"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"BushlanovDev\\MaxMessengerBot\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"BushlanovDev\\MaxMessengerBot\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon --memory-limit=256M",
|
|
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes src",
|
|
"test": "vendor/bin/phpunit",
|
|
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
|
|
}
|
|
}
|