composer.json 440 B

12345678910111213141516171819
  1. {
  2. "name": "eleirbag89/telegrambotphp",
  3. "description": "A very simple PHP Telegram Bot API",
  4. "type": "library",
  5. "authors": [
  6. {
  7. "name": "Gabriele Grillo",
  8. "email": "gabry.grillo@alice.it"
  9. }
  10. ],
  11. "license": "MIT",
  12. "minimum-stability": "alpha",
  13. "require": {
  14. "php": ">=5.0"
  15. },
  16. "autoload": {
  17. "files": ["Telegram.php", "TelegramErrorLogger.php"]
  18. }
  19. }