fix composer
Showing
composer.json
0 → 100644
{ | |||
"name": "longman/telegram-bot", | |||
"type": "library", | |||
"description": "PHP telegram bot", | |||
"keywords": ["telegram", "bot", "api"], | |||
"license": "MIT", | |||
"homepage": "https://github.com/akalongman/php-telegram-bot", | |||
"support": { | |||
"issues": "https://github.com/akalongman/php-telegram-bot/issues", | |||
"source": "https://github.com/akalongman/php-telegram-bot" | |||
}, | |||
"authors": [ | |||
{ | |||
"name": "Avtandil Kikabidze aka LONGMAN", | |||
"email": "akalongman@gmail.com", | |||
"homepage": "http://longman.ge", | |||
"role": "Developer" | |||
} | |||
], | |||
"require": { | |||
"php": ">=5.4.0", | |||
"ext-pdo": "*", | |||
"ext-curl": "*", | |||
"hoa/math": "~0.0" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"Longman\\TelegramBot\\": "src/" | |||
} | |||
}, | |||
"autoload-dev": { | |||
"psr-4": { | |||
"Tests\\": "tests/" | |||
} | |||
}, | |||
"minimum-stability": "dev", | |||
"require-dev": { | |||
"phpunit/phpunit": "4.1.*", | |||
"phpspec/phpspec": "~2.1", | |||
"squizlabs/php_codesniffer": "2.3.*" | |||
} | |||
} |
Please register or sign in to comment