├── .github ├── .kodiak.toml └── workflows │ └── main.yaml ├── LICENSE ├── composer.json ├── examples ├── deploy ├── deploy.php └── listeners │ ├── TestAfterListener.php │ └── TestBeforeListener.php └── src ├── Config ├── Config.php ├── ConfigFactory.php └── Section.php ├── DI └── DeployerExtension.php ├── Exceptions └── DeployException.php ├── Listeners ├── AfterListener.php ├── BeforeListener.php └── Impl │ ├── ComposerInstallListener.php │ ├── ComposerUpdateListener.php │ └── MaintenanceListener.php ├── Logging └── StdOutLogger.php ├── Manager.php ├── Runner.php └── Utils ├── Helpers.php └── System.php /.github/.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/.github/.kodiak.toml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/composer.json -------------------------------------------------------------------------------- /examples/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/examples/deploy -------------------------------------------------------------------------------- /examples/deploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/examples/deploy.php -------------------------------------------------------------------------------- /examples/listeners/TestAfterListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/examples/listeners/TestAfterListener.php -------------------------------------------------------------------------------- /examples/listeners/TestBeforeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/examples/listeners/TestBeforeListener.php -------------------------------------------------------------------------------- /src/Config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Config/Config.php -------------------------------------------------------------------------------- /src/Config/ConfigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Config/ConfigFactory.php -------------------------------------------------------------------------------- /src/Config/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Config/Section.php -------------------------------------------------------------------------------- /src/DI/DeployerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/DI/DeployerExtension.php -------------------------------------------------------------------------------- /src/Exceptions/DeployException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Exceptions/DeployException.php -------------------------------------------------------------------------------- /src/Listeners/AfterListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Listeners/AfterListener.php -------------------------------------------------------------------------------- /src/Listeners/BeforeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Listeners/BeforeListener.php -------------------------------------------------------------------------------- /src/Listeners/Impl/ComposerInstallListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Listeners/Impl/ComposerInstallListener.php -------------------------------------------------------------------------------- /src/Listeners/Impl/ComposerUpdateListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Listeners/Impl/ComposerUpdateListener.php -------------------------------------------------------------------------------- /src/Listeners/Impl/MaintenanceListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Listeners/Impl/MaintenanceListener.php -------------------------------------------------------------------------------- /src/Logging/StdOutLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Logging/StdOutLogger.php -------------------------------------------------------------------------------- /src/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Manager.php -------------------------------------------------------------------------------- /src/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Runner.php -------------------------------------------------------------------------------- /src/Utils/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Utils/Helpers.php -------------------------------------------------------------------------------- /src/Utils/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/ftpdeployer/HEAD/src/Utils/System.php --------------------------------------------------------------------------------