├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── composer.lock ├── forwarderBot.php ├── info.txt ├── isIt.txt └── vendor ├── .DS_Store ├── autoload.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json └── mashape ├── .DS_Store └── unirest-php ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Unirest.php └── Unirest │ ├── Exception.php │ ├── Method.php │ ├── Request.php │ ├── Request │ └── Body.php │ └── Response.php └── tests ├── Unirest ├── BodyTest.php ├── RequestTest.php └── ResponseTest.php ├── bootstrap.php └── fixtures └── upload.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/composer.lock -------------------------------------------------------------------------------- /forwarderBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/forwarderBot.php -------------------------------------------------------------------------------- /info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /isIt.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/.DS_Store -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/mashape/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/.DS_Store -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/.editorconfig -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/.gitignore -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/.travis.yml -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/LICENSE -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/README.md -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/composer.json -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/phpunit.xml -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/src/Unirest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/src/Unirest.php -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/src/Unirest/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/src/Unirest/Exception.php -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/src/Unirest/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/src/Unirest/Method.php -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/src/Unirest/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/src/Unirest/Request.php -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/src/Unirest/Request/Body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/src/Unirest/Request/Body.php -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/src/Unirest/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/src/Unirest/Response.php -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/tests/Unirest/BodyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/tests/Unirest/BodyTest.php -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/tests/Unirest/RequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/tests/Unirest/RequestTest.php -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/tests/Unirest/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masoud/Simple-Forwarder-Telegram-Bot/HEAD/vendor/mashape/unirest-php/tests/Unirest/ResponseTest.php -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/mashape/unirest-php/tests/fixtures/upload.txt: -------------------------------------------------------------------------------- 1 | This is a test --------------------------------------------------------------------------------