PHPackages                             madalynn/plum-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [DevOps &amp; Deployment](/categories/devops)
4. /
5. madalynn/plum-bundle

ActiveSymfony-bundle[DevOps &amp; Deployment](/categories/devops)

madalynn/plum-bundle
====================

A Symfony2 deploy bundle.

269.8k6[2 issues](https://github.com/aerialls/MadalynnPlumBundle/issues)PHP

Since Apr 10Pushed 10y ago2 watchersCompare

[ Source](https://github.com/aerialls/MadalynnPlumBundle)[ Packagist](https://packagist.org/packages/madalynn/plum-bundle)[ RSS](/packages/madalynn-plum-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

MadalynPlumBundle
=================

[](#madalynplumbundle)

The PlumBundle is a deploy bundle using several deployers.

Installation and configuration
------------------------------

[](#installation-and-configuration)

If you use a `deps` file just add:

```
[plum]
    git=https://github.com/aerialls/Plum.git

[MadalynnPlumBundle]
    git=https://github.com/aerialls/MadalynnPlumBundle.git
    target=bundles/Madalynn/Bundle/PlumBundle

```

Or by using Git:

```
git clone https://github.com/aerialls/MadalynnPlumBundle.git vendor/bundles/Madalynn/Bundle/PlumBundle
git clone https://github.com/aerialls/Plum.git vendor/plum

```

Or by Composer

```
"require": {
    "madalynn/plum-bundle": "dev-master"
},

```

You need to add to your `autoload.php`: (not necessary if you're using Composer)

```
// app/autoload.php
$loader->registerNamespaces(array(
    // ...
    'Madalynn' => __DIR__.'/../vendor/bundles',
    'Plum'     => __DIR__.'/../vendor/plum/src'
));

```

And add the MadalynnPlumBundle to your Kernel *for the dev/test environment only*.

```
// app/AppKernel.php
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
    // ...
    $bundles[] = new Madalynn\Bundle\PlumBundle\MadalynnPlumBundle();
}

```

Deployers
---------

[](#deployers)

By default, Plum provides 2 providers : `Plum\Deployer\RsyncDeployer` and `Plum\Deployer\SshDeployer`. Here are the options for each :

- `Plum\Deployer\RsyncDeployer`
- `dry_run`
- `rsync_exclude`
- `Plum\Deployer\SshDeployer`
- `dry_run`
- `commands`

You can add your own deployer by using the `Plum\Deployer\DeployerInterface`interface.

Configuration example
---------------------

[](#configuration-example)

```
# app/config/config_dev.yml
madalynn_plum:
    options: # Global options
        dry_run: false
        rsync_exclude: "%kernel.root_dir%/config/rsync_exclude.txt"
        commands:
            - 'php app/console cache:clear --env=prod --no-debug'
    deployers:
        - Plum\Deployer\RsyncDeployer
        - Plum\Deployer\SshDeployer
        - Acme\Deployer\MyCustomDeployer
    servers_file: "%kernel.root_dir%/config/deployment.yml"

```

The aim here is to seperate the servers configration from the rest. It is then possible to add the `deployment.yml` to the exclude file.

```
# app/config/deployment.yml
servers:
    production:
        host: prod.mywebsite.com
        user: webuser
        dir: /var/www/mywebsite
        port: 2321 # Optional, default 22
        password: myPaSsWoRd # Just for the SSH deployer
        options: # Server options, override the globals
            dry_run: %kernel.debug%
    dev:
        host: dev.mywebsite.com
        user: webuser
        dir: /var/www/mywebsite2

```

Start a deploy
==============

[](#start-a-deploy)

```
php app/console plum:deploy production --no-debug

```

You can specify a custom deployer via an extra parameter

```
php app/console plum:deploy production rsync,ssh

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 61.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/ed9ff0143d95780811494a4e92be98c4518eb885d824c5b55c6e6b5d14eaffaf?d=identicon)[Aerialls](/maintainers/Aerialls)

---

Top Contributors

[![aerialls](https://avatars.githubusercontent.com/u/556303?v=4)](https://github.com/aerialls "aerialls (13 commits)")[![gzOrg](https://avatars.githubusercontent.com/u/655329?v=4)](https://github.com/gzOrg "gzOrg (8 commits)")

---

Tags

deprecatedphpplum

### Embed Badge

![Health badge](/badges/madalynn-plum-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/madalynn-plum-bundle/health.svg)](https://phpackages.com/packages/madalynn-plum-bundle)
```

###  Alternatives

[deployer/deployer

Deployment Tool

11.0k25.4M207](/packages/deployer-deployer)[appwrite/server-ce

End to end backend server for frontend and mobile apps.

55.3k84.2k](/packages/appwrite-server-ce)[pragmarx/health

Laravel Server &amp; App Health Monitor and Notifier

2.0k1.0M2](/packages/pragmarx-health)[felixfbecker/language-server-protocol

PHP classes for the Language Server Protocol

22476.7M6](/packages/felixfbecker-language-server-protocol)[heroku/heroku-buildpack-php

Toolkit for starting a PHP application locally, with or without foreman, using the same config for PHP and Apache2/Nginx as on Heroku

8161.3M10](/packages/heroku-heroku-buildpack-php)[tiamo/phpas2

PHPAS2 is a php-based implementation of the EDIINT AS2 standard

4674.7k](/packages/tiamo-phpas2)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
