├── .github └── dependabot.yml ├── LICENSE ├── Plugins ├── bin.php ├── covid.php ├── currency.php ├── dictionary.php ├── iban.php ├── proxy.php ├── stripekey.php └── weather.php ├── Procfile ├── README.md ├── Resources ├── Functions.php └── Vars.php ├── app.json ├── composer.json └── main.php /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/bin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Plugins/bin.php -------------------------------------------------------------------------------- /Plugins/covid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Plugins/covid.php -------------------------------------------------------------------------------- /Plugins/currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Plugins/currency.php -------------------------------------------------------------------------------- /Plugins/dictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Plugins/dictionary.php -------------------------------------------------------------------------------- /Plugins/iban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Plugins/iban.php -------------------------------------------------------------------------------- /Plugins/proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Plugins/proxy.php -------------------------------------------------------------------------------- /Plugins/stripekey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Plugins/stripekey.php -------------------------------------------------------------------------------- /Plugins/weather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Plugins/weather.php -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Resources/Functions.php -------------------------------------------------------------------------------- /Resources/Vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/Resources/Vars.php -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/app.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/composer.json -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamNVN/AnyCheckerBot/HEAD/main.php --------------------------------------------------------------------------------