├── .htaccess ├── Procfile ├── README.md ├── composer.json ├── config.json ├── images ├── .htaccess └── senor.jpg ├── index.php ├── lib ├── .htaccess ├── athletic.php ├── curl.php ├── estropadak.php ├── imgur.php └── telegram.php ├── tmp ├── .htaccess └── imgur │ └── .htaccess └── view ├── .htaccess └── default.tpl /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/.htaccess -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/config.json -------------------------------------------------------------------------------- /images/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /images/senor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/images/senor.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/index.php -------------------------------------------------------------------------------- /lib/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /lib/athletic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/lib/athletic.php -------------------------------------------------------------------------------- /lib/curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/lib/curl.php -------------------------------------------------------------------------------- /lib/estropadak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/lib/estropadak.php -------------------------------------------------------------------------------- /lib/imgur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/lib/imgur.php -------------------------------------------------------------------------------- /lib/telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/lib/telegram.php -------------------------------------------------------------------------------- /tmp/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /tmp/imgur/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /view/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /view/default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiTAL/php-telebot-heroku/HEAD/view/default.tpl --------------------------------------------------------------------------------