├── LICENSE ├── Procfile ├── README-tr.md ├── README.md ├── app.json ├── bot.php ├── commands ├── link.php └── start.php ├── composer.json ├── composer.lock └── language └── default.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: php bot.php -------------------------------------------------------------------------------- /README-tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/README-tr.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/app.json -------------------------------------------------------------------------------- /bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/bot.php -------------------------------------------------------------------------------- /commands/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/commands/link.php -------------------------------------------------------------------------------- /commands/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/commands/start.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/composer.lock -------------------------------------------------------------------------------- /language/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusufusta/pmChatBot/HEAD/language/default.json --------------------------------------------------------------------------------