Popularity
2.4
Growing
Activity
0.0
Stable
87
10
6
Code Quality Rank:
L5
Programming language: PHP
License: MIT License
Latest version: v1.2
Plum alternatives and similar libraries
Based on the "Deployment" category.
Alternatively, view Plum alternatives based on common mentions on social networks and blogs.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
![SaaSHub Logo SaaSHub Logo](https://cdn-b.libhunt.com/assets/partners/saashub-small-09b040e303cf50000aca670e1c77a15c64fc5c073fbdca2665ec2b8b621efc1a.png)
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Plum or a related project?
Popular Comparisons
README
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');