├── .editorconfig ├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml.dist ├── renovate.json ├── src ├── Remote.php ├── RemoteServiceProvider.php └── config.php └── tests ├── .gitkeep ├── Remote.php └── keys └── id_rsa /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/renovate.json -------------------------------------------------------------------------------- /src/Remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/src/Remote.php -------------------------------------------------------------------------------- /src/RemoteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/src/RemoteServiceProvider.php -------------------------------------------------------------------------------- /src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/src/config.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/tests/Remote.php -------------------------------------------------------------------------------- /tests/keys/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phanan/remote/HEAD/tests/keys/id_rsa --------------------------------------------------------------------------------