├── LICENSE ├── README.md ├── command.php ├── composer.json ├── composer.lock └── src ├── CLI ├── Commands │ ├── AttachmentCommand.php │ ├── BatchCommand.php │ ├── CommandNamespace.php │ ├── FindCommand.php │ ├── MUPluginsCommand.php │ ├── PluginsCommand.php │ ├── ResetCommand.php │ ├── RestoreCommand.php │ ├── ThemesCommand.php │ ├── WPAdminCommand.php │ └── WPIncludesCommand.php ├── Logger.php └── LoggerFactory.php ├── LoggerInterface.php ├── Operations ├── AttachmentImages │ ├── Backup.php │ ├── BackupFactory.php │ ├── Optimize.php │ ├── Restore.php │ └── RestoreFactory.php ├── Backup.php ├── Find.php └── Optimize.php ├── OptimizerChainFactory.php └── Repositories └── AttachmentRepository.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/README.md -------------------------------------------------------------------------------- /command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/command.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/composer.lock -------------------------------------------------------------------------------- /src/CLI/Commands/AttachmentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/AttachmentCommand.php -------------------------------------------------------------------------------- /src/CLI/Commands/BatchCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/BatchCommand.php -------------------------------------------------------------------------------- /src/CLI/Commands/CommandNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/CommandNamespace.php -------------------------------------------------------------------------------- /src/CLI/Commands/FindCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/FindCommand.php -------------------------------------------------------------------------------- /src/CLI/Commands/MUPluginsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/MUPluginsCommand.php -------------------------------------------------------------------------------- /src/CLI/Commands/PluginsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/PluginsCommand.php -------------------------------------------------------------------------------- /src/CLI/Commands/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/ResetCommand.php -------------------------------------------------------------------------------- /src/CLI/Commands/RestoreCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/RestoreCommand.php -------------------------------------------------------------------------------- /src/CLI/Commands/ThemesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/ThemesCommand.php -------------------------------------------------------------------------------- /src/CLI/Commands/WPAdminCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/WPAdminCommand.php -------------------------------------------------------------------------------- /src/CLI/Commands/WPIncludesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Commands/WPIncludesCommand.php -------------------------------------------------------------------------------- /src/CLI/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/Logger.php -------------------------------------------------------------------------------- /src/CLI/LoggerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/CLI/LoggerFactory.php -------------------------------------------------------------------------------- /src/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/LoggerInterface.php -------------------------------------------------------------------------------- /src/Operations/AttachmentImages/Backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/Operations/AttachmentImages/Backup.php -------------------------------------------------------------------------------- /src/Operations/AttachmentImages/BackupFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/Operations/AttachmentImages/BackupFactory.php -------------------------------------------------------------------------------- /src/Operations/AttachmentImages/Optimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/Operations/AttachmentImages/Optimize.php -------------------------------------------------------------------------------- /src/Operations/AttachmentImages/Restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/Operations/AttachmentImages/Restore.php -------------------------------------------------------------------------------- /src/Operations/AttachmentImages/RestoreFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/Operations/AttachmentImages/RestoreFactory.php -------------------------------------------------------------------------------- /src/Operations/Backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/Operations/Backup.php -------------------------------------------------------------------------------- /src/Operations/Find.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/Operations/Find.php -------------------------------------------------------------------------------- /src/Operations/Optimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/Operations/Optimize.php -------------------------------------------------------------------------------- /src/OptimizerChainFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/OptimizerChainFactory.php -------------------------------------------------------------------------------- /src/Repositories/AttachmentRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/image-optimize-command/HEAD/src/Repositories/AttachmentRepository.php --------------------------------------------------------------------------------