├── LICENSE ├── README.md ├── composer.json ├── docs ├── _config.yml └── index.md ├── examples └── bot.php └── src ├── Plugins ├── Plugins.php ├── mysql.php └── sqlite.php └── TelegramMethods.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/composer.json -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/examples/bot.php -------------------------------------------------------------------------------- /src/Plugins/Plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/src/Plugins/Plugins.php -------------------------------------------------------------------------------- /src/Plugins/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/src/Plugins/mysql.php -------------------------------------------------------------------------------- /src/Plugins/sqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/src/Plugins/sqlite.php -------------------------------------------------------------------------------- /src/TelegramMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coderlast/CLFramework/HEAD/src/TelegramMethods.php --------------------------------------------------------------------------------