composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "irazasyed/telegram-bot-sdk",
  3. "description": "The Unofficial Telegram Bot API PHP SDK",
  4. "keywords": ["telegram", "telegram bot", "telegram bot api", "telegram sdk", "telegram php", "laravel telegram", "laravel"],
  5. "type": "library",
  6. "homepage": "https://github.com/irazasyed/telegram-bot-sdk",
  7. "license": "BSD-3-Clause",
  8. "authors": [
  9. {
  10. "name": "Syed Irfaq R.",
  11. "email": "syed+gh@lukonet.com",
  12. "homepage": "https://github.com/irazasyed"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=7.3",
  17. "ext-json": "*",
  18. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  19. "guzzlehttp/psr7": "^1.9 || ^2.2",
  20. "illuminate/support": "5.8 - 9",
  21. "league/event": "^2.1"
  22. },
  23. "require-dev": {
  24. "php-parallel-lint/php-parallel-lint": "^1.3",
  25. "phpunit/phpunit": "^9.5"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Telegram\\Bot\\": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Telegram\\Bot\\Tests\\": "tests/"
  35. }
  36. },
  37. "suggest": {
  38. "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!",
  39. "illuminate/container": "Hold dependencies to be injected in commands constructors"
  40. },
  41. "scripts": {
  42. "php:syntax": "parallel-lint . --blame --colors --exclude vendor",
  43. "test": "phpunit"
  44. },
  45. "extra": {
  46. "branch-alias": {
  47. "dev-master": "3.0-dev"
  48. },
  49. "laravel": {
  50. "providers": [
  51. "Telegram\\Bot\\Laravel\\TelegramServiceProvider"
  52. ],
  53. "aliases": {
  54. "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
  55. }
  56. }
  57. },
  58. "config": {
  59. "preferred-install": "dist",
  60. "sort-packages": true,
  61. "allow-plugins": {
  62. "kylekatarnls/update-helper": true
  63. }
  64. },
  65. "minimum-stability": "dev",
  66. "prefer-stable": true
  67. }