├── .gitignore ├── README.md ├── bin └── craft ├── box.json ├── composer.json ├── github-release.sh ├── sample.craft-cli.php └── src ├── Application.php ├── Command ├── AssetsPullCommand.php ├── AssetsPushCommand.php ├── ClearCacheCommand.php ├── ConsoleCommand.php ├── DbBackupCommand.php ├── DbCreateCommand.php ├── DbPullCommand.php ├── DbPushCommand.php ├── DbRestoreCommand.php ├── DownloadCraftCommand.php ├── ExemptFromBootstrapInterface.php ├── GenerateCommandCommand.php ├── InitCommand.php ├── InstallCraftCommand.php ├── InstallPluginCommand.php ├── RebuildSearchIndexesCommand.php ├── RunTasksCommand.php ├── ShowConfigCommand.php ├── TailCommand.php └── UpdateAssetIndexesCommand.php ├── Console └── GlobalArgvInput.php ├── Handlebars └── Loader │ └── FilesystemLoader.php ├── Support ├── AbstractMysqlCommand.php ├── ClassFinder.php ├── Downloader │ ├── BaseDownloader.php │ ├── Downloader.php │ └── TempDownloader.php ├── MysqlCommand.php ├── MysqlCreateDatabaseCommand.php ├── MysqlDumpCommand.php ├── PluginReader.php ├── RsyncCommand.php ├── SshCommand.php └── TarExtractor.php ├── bootstrap.php ├── stub.php └── templates ├── Command.php.handlebars └── db.php.handlebars /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | /craft.phar -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/bin/craft -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/composer.json -------------------------------------------------------------------------------- /github-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/github-release.sh -------------------------------------------------------------------------------- /sample.craft-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/sample.craft-cli.php -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Command/AssetsPullCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/AssetsPullCommand.php -------------------------------------------------------------------------------- /src/Command/AssetsPushCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/AssetsPushCommand.php -------------------------------------------------------------------------------- /src/Command/ClearCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/ClearCacheCommand.php -------------------------------------------------------------------------------- /src/Command/ConsoleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/ConsoleCommand.php -------------------------------------------------------------------------------- /src/Command/DbBackupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/DbBackupCommand.php -------------------------------------------------------------------------------- /src/Command/DbCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/DbCreateCommand.php -------------------------------------------------------------------------------- /src/Command/DbPullCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/DbPullCommand.php -------------------------------------------------------------------------------- /src/Command/DbPushCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/DbPushCommand.php -------------------------------------------------------------------------------- /src/Command/DbRestoreCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/DbRestoreCommand.php -------------------------------------------------------------------------------- /src/Command/DownloadCraftCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/DownloadCraftCommand.php -------------------------------------------------------------------------------- /src/Command/ExemptFromBootstrapInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/ExemptFromBootstrapInterface.php -------------------------------------------------------------------------------- /src/Command/GenerateCommandCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/GenerateCommandCommand.php -------------------------------------------------------------------------------- /src/Command/InitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/InitCommand.php -------------------------------------------------------------------------------- /src/Command/InstallCraftCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/InstallCraftCommand.php -------------------------------------------------------------------------------- /src/Command/InstallPluginCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/InstallPluginCommand.php -------------------------------------------------------------------------------- /src/Command/RebuildSearchIndexesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/RebuildSearchIndexesCommand.php -------------------------------------------------------------------------------- /src/Command/RunTasksCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/RunTasksCommand.php -------------------------------------------------------------------------------- /src/Command/ShowConfigCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/ShowConfigCommand.php -------------------------------------------------------------------------------- /src/Command/TailCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/TailCommand.php -------------------------------------------------------------------------------- /src/Command/UpdateAssetIndexesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Command/UpdateAssetIndexesCommand.php -------------------------------------------------------------------------------- /src/Console/GlobalArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Console/GlobalArgvInput.php -------------------------------------------------------------------------------- /src/Handlebars/Loader/FilesystemLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Handlebars/Loader/FilesystemLoader.php -------------------------------------------------------------------------------- /src/Support/AbstractMysqlCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/AbstractMysqlCommand.php -------------------------------------------------------------------------------- /src/Support/ClassFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/ClassFinder.php -------------------------------------------------------------------------------- /src/Support/Downloader/BaseDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/Downloader/BaseDownloader.php -------------------------------------------------------------------------------- /src/Support/Downloader/Downloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/Downloader/Downloader.php -------------------------------------------------------------------------------- /src/Support/Downloader/TempDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/Downloader/TempDownloader.php -------------------------------------------------------------------------------- /src/Support/MysqlCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/MysqlCommand.php -------------------------------------------------------------------------------- /src/Support/MysqlCreateDatabaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/MysqlCreateDatabaseCommand.php -------------------------------------------------------------------------------- /src/Support/MysqlDumpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/MysqlDumpCommand.php -------------------------------------------------------------------------------- /src/Support/PluginReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/PluginReader.php -------------------------------------------------------------------------------- /src/Support/RsyncCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/RsyncCommand.php -------------------------------------------------------------------------------- /src/Support/SshCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/SshCommand.php -------------------------------------------------------------------------------- /src/Support/TarExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/Support/TarExtractor.php -------------------------------------------------------------------------------- /src/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/bootstrap.php -------------------------------------------------------------------------------- /src/stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/stub.php -------------------------------------------------------------------------------- /src/templates/Command.php.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/templates/Command.php.handlebars -------------------------------------------------------------------------------- /src/templates/db.php.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/craft-cli/HEAD/src/templates/db.php.handlebars --------------------------------------------------------------------------------