All Projects β†’ aerialls β†’ Plum

aerialls / Plum

Licence: mit
A deployer library for PHP 5.3

Projects that are alternatives of or similar to Plum

Twoot
An open source light-weight OS X twitter client based on jQuery and Fluid (deprecated!)
Stars: ✭ 61 (-30.68%)
Mutual labels:  deprecated
Sphero Mac Sdk
🚫 DEPRECATED: Sphero SDK for the Mac platform.
Stars: ✭ 70 (-20.45%)
Mutual labels:  deprecated
Vagrant Librarian Chef
*UNMAINTAINED* A Vagrant plugin to install Chef cookbooks using Librarian-Chef.
Stars: ✭ 80 (-9.09%)
Mutual labels:  deprecated
Conductor
Conductor makes it easy to mange multiple composer packages within a single source repository
Stars: ✭ 64 (-27.27%)
Mutual labels:  deprecated
Entware Ng
Entware-ng
Stars: ✭ 1,157 (+1214.77%)
Mutual labels:  deprecated
Formspopup
Xamarin.Forms Popup View
Stars: ✭ 75 (-14.77%)
Mutual labels:  deprecated
Anatine
[DEPRECATED] 🐦 Pristine Twitter app
Stars: ✭ 1,102 (+1152.27%)
Mutual labels:  deprecated
Codeigniter Schema
⛔️DEPRECATED Expressive table definitions
Stars: ✭ 87 (-1.14%)
Mutual labels:  deprecated
Grunt Myth
Myth - Postprocessor that polyfills CSS
Stars: ✭ 70 (-20.45%)
Mutual labels:  deprecated
Adminbar
DEPRECATED – Front-end shortcuts for clients logged into Craft CMS.
Stars: ✭ 77 (-12.5%)
Mutual labels:  deprecated
Dashboard Extension Online Map Item
β›” DEPRECATED. This project was moved to a new repository. Visit https://github.com/DevExpress/dashboard-extensions to find an updated version.
Stars: ✭ 65 (-26.14%)
Mutual labels:  deprecated
Django Cache Url
DEPRECATED | Use Cache URLs in your Django Application
Stars: ✭ 68 (-22.73%)
Mutual labels:  deprecated
Waxosuit
(deprecated in favor of wascc-host)
Stars: ✭ 76 (-13.64%)
Mutual labels:  deprecated
Dashboard Extension Webpage Item
β›” DEPRECATED. This project was moved to a new repository. Visit https://github.com/DevExpress/dashboard-extensions to find an updated version.
Stars: ✭ 62 (-29.55%)
Mutual labels:  deprecated
Angular2 Style Guide
[Deprecated] Community-driven set of best practices and style guidelines for Angular 2 application development
Stars: ✭ 1,237 (+1305.68%)
Mutual labels:  deprecated
System
A full-stack framework built from Aura library packages.
Stars: ✭ 61 (-30.68%)
Mutual labels:  deprecated
Kirby Twig
Twig templating support for Kirby CMS 2. For Kirby 3, use https://github.com/amteich/kirby-twig
Stars: ✭ 73 (-17.05%)
Mutual labels:  deprecated
Sass Rails Source Maps
DEPRECATED: Rails gem for generating sass source maps
Stars: ✭ 88 (+0%)
Mutual labels:  deprecated
Framework7 With Angularjs Demo App
⛔️ Unmaintained and deprecated!
Stars: ✭ 81 (-7.95%)
Mutual labels:  deprecated
React Axe
[DEPRECATED] Accessibility auditing for React.js applications
Stars: ✭ 1,201 (+1264.77%)
Mutual labels:  deprecated

Plum

Build Status

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');
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].