{ "name": "longman/telegram-bot", "type": "library", "description": "PHP Telegram bot", "keywords": [ "telegram", "bot", "api" ], "license": "MIT", "homepage": "https://github.com/php-telegram-bot/core", "support": { "issues": "https://github.com/php-telegram-bot/core/issues", "source": "https://github.com/php-telegram-bot/core" }, "authors": [ { "name": "Avtandil Kikabidze aka LONGMAN", "email": "akalongman@gmail.com", "homepage": "http://longman.me", "role": "Developer" } ], "require": { "php": ">=5.6.4|^7.0", "ext-pdo": "*", "ext-curl": "*", "ext-mbstring": "*", "monolog/monolog": "^1.23", "illuminate/container": "5.4.*|5.5.*|5.6.*", "illuminate/support": "5.4.*|5.5.*|5.6.*", "illuminate/http": "5.4.*|5.5.*|5.6.*", "illuminate/config": "5.4.*|5.5.*|5.6.*", "guzzlehttp/guzzle": "^6.3" }, "require-dev": { "phpunit/phpunit": "^4.8|^5.7|^6.5|^7.0", "symfony/var-dumper": "3.4.*|~4.0", "squizlabs/php_codesniffer": "^3.2", "longman/php-code-style": "^1.0" }, "autoload": { "psr-4": { "Longman\\TelegramBot\\": "src/" } }, "autoload-dev": { "psr-4": { "Longman\\TelegramBot\\Tests\\Unit\\": "tests/unit" } }, "scripts": { "check-code": [ "\"vendor/bin/phpcs\" --standard=phpcs.xml -snp --encoding=utf-8 src/ tests/ --report-width=150" ], "fix-code": [ "\"vendor/bin/phpcbf\" --standard=phpcs.xml -snp --encoding=utf-8 src/ tests/ --report-width=150" ], "test": [ "\"vendor/bin/phpunit\"" ], "test-cov": [ "\"vendor/bin/phpunit\" --coverage-clover build/logs/clover.xml" ], "test-cov-html": [ "\"vendor/bin/phpunit\" --coverage-html build/html" ], "test-cov-upload": [ "wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml" ] }, "config": { "preferred-install": "dist", "sort-packages": true, "optimize-autoloader": true, "process-timeout": 3600 } }