├── LICENSE.md ├── README.md ├── bin └── forge ├── composer.json └── src ├── Commands ├── Authorize.php ├── BaseCommand.php ├── Certificates │ ├── Activate.php │ ├── Delete.php │ ├── Install.php │ ├── ListAll.php │ ├── Make.php │ └── Show.php ├── Credentials.php ├── Daemons │ ├── Delete.php │ ├── ListAll.php │ ├── Make.php │ ├── Reboot.php │ └── Show.php ├── DatabaseUsers │ ├── Delete.php │ ├── ListAll.php │ ├── Make.php │ ├── Show.php │ └── Update.php ├── Databases │ ├── Delete.php │ ├── ListAll.php │ ├── Make.php │ └── Show.php ├── DeployScript │ ├── Get.php │ └── Set.php ├── Deployment │ ├── GetLog.php │ └── ResetState.php ├── Env │ ├── Get.php │ └── Update.php ├── FirewallRules │ ├── Delete.php │ ├── ListAll.php │ ├── Make.php │ └── Show.php ├── Jobs │ ├── Delete.php │ ├── ListAll.php │ ├── Make.php │ └── Show.php ├── NginxConfig │ ├── Get.php │ └── Set.php ├── Projects │ ├── DeleteGit.php │ ├── DeleteWordpress.php │ ├── InstallGit.php │ └── InstallWordpress.php ├── QuickDeploy │ ├── Disable.php │ └── Enable.php ├── Recipes │ ├── Delete.php │ ├── ListAll.php │ ├── Make.php │ ├── Run.php │ ├── Show.php │ └── Update.php ├── Servers │ ├── Delete.php │ ├── ListAll.php │ ├── Make.php │ ├── Reboot.php │ ├── Show.php │ └── Update.php ├── Services │ ├── Install.php │ ├── Reboot.php │ ├── Stop.php │ └── Uninstall.php ├── Sites │ ├── Delete.php │ ├── Deploy.php │ ├── ListAll.php │ ├── Make.php │ ├── Show.php │ └── Update.php ├── SshKeys │ ├── Delete.php │ ├── ListAll.php │ ├── Make.php │ └── Show.php └── Workers │ ├── Delete.php │ ├── ListAll.php │ ├── Make.php │ ├── Reboot.php │ └── Show.php └── Contracts └── NeedsForge.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/forge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/bin/forge -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/composer.json -------------------------------------------------------------------------------- /src/Commands/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Authorize.php -------------------------------------------------------------------------------- /src/Commands/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/BaseCommand.php -------------------------------------------------------------------------------- /src/Commands/Certificates/Activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Certificates/Activate.php -------------------------------------------------------------------------------- /src/Commands/Certificates/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Certificates/Delete.php -------------------------------------------------------------------------------- /src/Commands/Certificates/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Certificates/Install.php -------------------------------------------------------------------------------- /src/Commands/Certificates/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Certificates/ListAll.php -------------------------------------------------------------------------------- /src/Commands/Certificates/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Certificates/Make.php -------------------------------------------------------------------------------- /src/Commands/Certificates/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Certificates/Show.php -------------------------------------------------------------------------------- /src/Commands/Credentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Credentials.php -------------------------------------------------------------------------------- /src/Commands/Daemons/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Daemons/Delete.php -------------------------------------------------------------------------------- /src/Commands/Daemons/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Daemons/ListAll.php -------------------------------------------------------------------------------- /src/Commands/Daemons/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Daemons/Make.php -------------------------------------------------------------------------------- /src/Commands/Daemons/Reboot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Daemons/Reboot.php -------------------------------------------------------------------------------- /src/Commands/Daemons/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Daemons/Show.php -------------------------------------------------------------------------------- /src/Commands/DatabaseUsers/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/DatabaseUsers/Delete.php -------------------------------------------------------------------------------- /src/Commands/DatabaseUsers/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/DatabaseUsers/ListAll.php -------------------------------------------------------------------------------- /src/Commands/DatabaseUsers/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/DatabaseUsers/Make.php -------------------------------------------------------------------------------- /src/Commands/DatabaseUsers/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/DatabaseUsers/Show.php -------------------------------------------------------------------------------- /src/Commands/DatabaseUsers/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/DatabaseUsers/Update.php -------------------------------------------------------------------------------- /src/Commands/Databases/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Databases/Delete.php -------------------------------------------------------------------------------- /src/Commands/Databases/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Databases/ListAll.php -------------------------------------------------------------------------------- /src/Commands/Databases/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Databases/Make.php -------------------------------------------------------------------------------- /src/Commands/Databases/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Databases/Show.php -------------------------------------------------------------------------------- /src/Commands/DeployScript/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/DeployScript/Get.php -------------------------------------------------------------------------------- /src/Commands/DeployScript/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/DeployScript/Set.php -------------------------------------------------------------------------------- /src/Commands/Deployment/GetLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Deployment/GetLog.php -------------------------------------------------------------------------------- /src/Commands/Deployment/ResetState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Deployment/ResetState.php -------------------------------------------------------------------------------- /src/Commands/Env/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Env/Get.php -------------------------------------------------------------------------------- /src/Commands/Env/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Env/Update.php -------------------------------------------------------------------------------- /src/Commands/FirewallRules/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/FirewallRules/Delete.php -------------------------------------------------------------------------------- /src/Commands/FirewallRules/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/FirewallRules/ListAll.php -------------------------------------------------------------------------------- /src/Commands/FirewallRules/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/FirewallRules/Make.php -------------------------------------------------------------------------------- /src/Commands/FirewallRules/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/FirewallRules/Show.php -------------------------------------------------------------------------------- /src/Commands/Jobs/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Jobs/Delete.php -------------------------------------------------------------------------------- /src/Commands/Jobs/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Jobs/ListAll.php -------------------------------------------------------------------------------- /src/Commands/Jobs/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Jobs/Make.php -------------------------------------------------------------------------------- /src/Commands/Jobs/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Jobs/Show.php -------------------------------------------------------------------------------- /src/Commands/NginxConfig/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/NginxConfig/Get.php -------------------------------------------------------------------------------- /src/Commands/NginxConfig/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/NginxConfig/Set.php -------------------------------------------------------------------------------- /src/Commands/Projects/DeleteGit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Projects/DeleteGit.php -------------------------------------------------------------------------------- /src/Commands/Projects/DeleteWordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Projects/DeleteWordpress.php -------------------------------------------------------------------------------- /src/Commands/Projects/InstallGit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Projects/InstallGit.php -------------------------------------------------------------------------------- /src/Commands/Projects/InstallWordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Projects/InstallWordpress.php -------------------------------------------------------------------------------- /src/Commands/QuickDeploy/Disable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/QuickDeploy/Disable.php -------------------------------------------------------------------------------- /src/Commands/QuickDeploy/Enable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/QuickDeploy/Enable.php -------------------------------------------------------------------------------- /src/Commands/Recipes/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Recipes/Delete.php -------------------------------------------------------------------------------- /src/Commands/Recipes/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Recipes/ListAll.php -------------------------------------------------------------------------------- /src/Commands/Recipes/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Recipes/Make.php -------------------------------------------------------------------------------- /src/Commands/Recipes/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Recipes/Run.php -------------------------------------------------------------------------------- /src/Commands/Recipes/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Recipes/Show.php -------------------------------------------------------------------------------- /src/Commands/Recipes/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Recipes/Update.php -------------------------------------------------------------------------------- /src/Commands/Servers/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Servers/Delete.php -------------------------------------------------------------------------------- /src/Commands/Servers/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Servers/ListAll.php -------------------------------------------------------------------------------- /src/Commands/Servers/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Servers/Make.php -------------------------------------------------------------------------------- /src/Commands/Servers/Reboot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Servers/Reboot.php -------------------------------------------------------------------------------- /src/Commands/Servers/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Servers/Show.php -------------------------------------------------------------------------------- /src/Commands/Servers/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Servers/Update.php -------------------------------------------------------------------------------- /src/Commands/Services/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Services/Install.php -------------------------------------------------------------------------------- /src/Commands/Services/Reboot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Services/Reboot.php -------------------------------------------------------------------------------- /src/Commands/Services/Stop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Services/Stop.php -------------------------------------------------------------------------------- /src/Commands/Services/Uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Services/Uninstall.php -------------------------------------------------------------------------------- /src/Commands/Sites/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Sites/Delete.php -------------------------------------------------------------------------------- /src/Commands/Sites/Deploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Sites/Deploy.php -------------------------------------------------------------------------------- /src/Commands/Sites/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Sites/ListAll.php -------------------------------------------------------------------------------- /src/Commands/Sites/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Sites/Make.php -------------------------------------------------------------------------------- /src/Commands/Sites/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Sites/Show.php -------------------------------------------------------------------------------- /src/Commands/Sites/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Sites/Update.php -------------------------------------------------------------------------------- /src/Commands/SshKeys/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/SshKeys/Delete.php -------------------------------------------------------------------------------- /src/Commands/SshKeys/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/SshKeys/ListAll.php -------------------------------------------------------------------------------- /src/Commands/SshKeys/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/SshKeys/Make.php -------------------------------------------------------------------------------- /src/Commands/SshKeys/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/SshKeys/Show.php -------------------------------------------------------------------------------- /src/Commands/Workers/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Workers/Delete.php -------------------------------------------------------------------------------- /src/Commands/Workers/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Workers/ListAll.php -------------------------------------------------------------------------------- /src/Commands/Workers/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Workers/Make.php -------------------------------------------------------------------------------- /src/Commands/Workers/Reboot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Workers/Reboot.php -------------------------------------------------------------------------------- /src/Commands/Workers/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Commands/Workers/Show.php -------------------------------------------------------------------------------- /src/Contracts/NeedsForge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenluijten/forge-cli/HEAD/src/Contracts/NeedsForge.php --------------------------------------------------------------------------------