Download the PHP package madalynn/plum without Composer
On this page you can find all versions of the php package madalynn/plum. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download madalynn/plum
More information about madalynn/plum
Files in madalynn/plum
Download madalynn/plum
More information about madalynn/plum
Files in madalynn/plum
Vendor madalynn
Package plum
Short Description An object oriented deployer library
License MIT
Homepage http://www.madalynn.eu
Package plum
Short Description An object oriented deployer library
License MIT
Homepage http://www.madalynn.eu
Please rate this library. Is it a good library?
Informations about the package plum
Plum
An object oriented deployer library
Installation and configuration
Plum does not provide and autoloader but follow the PSR-0 convention.
$plum = new \Plum\Plum();
// Add global options for all the servers
$plum->setOptions(array(
'dry_run' => true,
'excludeFile' => __DIR__.'/exclude.txt'
));
// Register the rsync deployer
$plum->registerDeployer(new \Plum\Deployer\RsyncDeployer());
// Add your server
$plum->addServer('server_name', new \Plum\Server\Server('host', 'username', '/path/to/my/website'));
// Let's go!
$plum->deploy('bender', 'rsync');
All versions of plum with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.2
The package madalynn/plum contains the following files
Loading the files please wait ....