codenamephp / deployer.mariadb
Installs: 1 498
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 1
Requires
- php: ^8.2
- codenamephp/deployer.base: 1 - 3
- deployer/deployer: ^7.0
Requires (Dev)
- mockery/mockery: ^1.5
This package is auto-updated.
Last update: 2025-03-25 16:38:34 UTC
README
What is it?
This package adds tasks to push, pull and copy mariadb databases along with various subtasks for dumping, importing etc.
Installation
Easiest way is via composer. Just run composer require codenamephp/deployer.mariadb
in your cli which should install the latest version for you.
Usage
Use the included tasks in your deployer file. You need to add the database configuration to your hosts:
$deployerFunctions->localhost() ->set('database', [ 'user' => 'application', 'password' => 'application', 'name' => 'application', 'host' => 'database', ]);
All supported options are documented in the \de\codenamephp\deployer\mariadb\database\factory\database\iDatabase::fromArray
interface.
For the copy tasks you need to have ssh agent forwarding enabled since the hosts try to connect directly using a local key. This key must have access to both servers. This way, the copy can work without the servers knowing about each other.