├── README.md ├── api.stag.php ├── autoload_stag.php ├── bin └── stag ├── command.php ├── commands ├── command.clear_cache.php ├── command.deploy.php ├── command.help.php ├── command.install.php ├── command.pull_content.php └── command.set_permissions.php ├── default.yaml ├── tasks.stag.php ├── tests └── stag_task.help_test.php ├── utilities └── ssh.php └── vendor └── ftp ├── composer.json ├── example.php ├── license.md ├── readme.md └── src └── Ftp.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/README.md -------------------------------------------------------------------------------- /api.stag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/api.stag.php -------------------------------------------------------------------------------- /autoload_stag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/autoload_stag.php -------------------------------------------------------------------------------- /bin/stag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/bin/stag -------------------------------------------------------------------------------- /command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/command.php -------------------------------------------------------------------------------- /commands/command.clear_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/commands/command.clear_cache.php -------------------------------------------------------------------------------- /commands/command.deploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/commands/command.deploy.php -------------------------------------------------------------------------------- /commands/command.help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/commands/command.help.php -------------------------------------------------------------------------------- /commands/command.install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/commands/command.install.php -------------------------------------------------------------------------------- /commands/command.pull_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/commands/command.pull_content.php -------------------------------------------------------------------------------- /commands/command.set_permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/commands/command.set_permissions.php -------------------------------------------------------------------------------- /default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/default.yaml -------------------------------------------------------------------------------- /tasks.stag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/tasks.stag.php -------------------------------------------------------------------------------- /tests/stag_task.help_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/tests/stag_task.help_test.php -------------------------------------------------------------------------------- /utilities/ssh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/utilities/ssh.php -------------------------------------------------------------------------------- /vendor/ftp/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/vendor/ftp/composer.json -------------------------------------------------------------------------------- /vendor/ftp/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/vendor/ftp/example.php -------------------------------------------------------------------------------- /vendor/ftp/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/vendor/ftp/license.md -------------------------------------------------------------------------------- /vendor/ftp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/vendor/ftp/readme.md -------------------------------------------------------------------------------- /vendor/ftp/src/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisbythem/stag/HEAD/vendor/ftp/src/Ftp.php --------------------------------------------------------------------------------