├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── .php-cs-fixer.php ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── brand └── brand.png ├── composer.json ├── composer.lock ├── mt ├── mysqltools └── src ├── BaseCommand.php ├── MysqlBackupCommand.php ├── MysqlCompareCommand.php ├── MysqlToolsApplication.php ├── MysqlTunnelCommand.php ├── ServerCreateCommand.php ├── ServerDeleteCommand.php ├── ServerInfoCommand.php ├── ServerListCommand.php ├── Services ├── Configurator.php └── DatabaseManager.php ├── StarCommand.php ├── Traits └── HasServer.php └── UpdateCommand.php /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /.idea 3 | /.php-cs-fixer.cache 4 | -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/README.md -------------------------------------------------------------------------------- /brand/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/brand/brand.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/composer.lock -------------------------------------------------------------------------------- /mt: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mysqltools $1 $2 3 | -------------------------------------------------------------------------------- /mysqltools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/mysqltools -------------------------------------------------------------------------------- /src/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/BaseCommand.php -------------------------------------------------------------------------------- /src/MysqlBackupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/MysqlBackupCommand.php -------------------------------------------------------------------------------- /src/MysqlCompareCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/MysqlCompareCommand.php -------------------------------------------------------------------------------- /src/MysqlToolsApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/MysqlToolsApplication.php -------------------------------------------------------------------------------- /src/MysqlTunnelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/MysqlTunnelCommand.php -------------------------------------------------------------------------------- /src/ServerCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/ServerCreateCommand.php -------------------------------------------------------------------------------- /src/ServerDeleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/ServerDeleteCommand.php -------------------------------------------------------------------------------- /src/ServerInfoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/ServerInfoCommand.php -------------------------------------------------------------------------------- /src/ServerListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/ServerListCommand.php -------------------------------------------------------------------------------- /src/Services/Configurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/Services/Configurator.php -------------------------------------------------------------------------------- /src/Services/DatabaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/Services/DatabaseManager.php -------------------------------------------------------------------------------- /src/StarCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/StarCommand.php -------------------------------------------------------------------------------- /src/Traits/HasServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/Traits/HasServer.php -------------------------------------------------------------------------------- /src/UpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delta-Solutions/mysqltools/HEAD/src/UpdateCommand.php --------------------------------------------------------------------------------