├── .gitignore ├── AvailableMethods.md ├── LICENSE ├── README.md ├── composer.json ├── examples ├── assets │ └── telegram.png ├── exampleFunctional.php └── quoteBot.php └── src ├── Exception.php ├── Telegram.php └── cache └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/.gitignore -------------------------------------------------------------------------------- /AvailableMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/AvailableMethods.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/composer.json -------------------------------------------------------------------------------- /examples/assets/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/examples/assets/telegram.png -------------------------------------------------------------------------------- /examples/exampleFunctional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/examples/exampleFunctional.php -------------------------------------------------------------------------------- /examples/quoteBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/examples/quoteBot.php -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/Telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgp25/Telegram-Bot-API/HEAD/src/Telegram.php -------------------------------------------------------------------------------- /src/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------