├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── data └── chat-data │ └── .gitkeep ├── resources ├── config.php └── thanos.mp4 └── src ├── bot.php └── sections ├── extensions.php ├── functions.php └── handlers.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/composer.lock -------------------------------------------------------------------------------- /data/chat-data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/resources/config.php -------------------------------------------------------------------------------- /resources/thanos.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/resources/thanos.mp4 -------------------------------------------------------------------------------- /src/bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/src/bot.php -------------------------------------------------------------------------------- /src/sections/extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/src/sections/extensions.php -------------------------------------------------------------------------------- /src/sections/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/src/sections/functions.php -------------------------------------------------------------------------------- /src/sections/handlers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiyarGHD/ToigBot/HEAD/src/sections/handlers.php --------------------------------------------------------------------------------