leaseweb/automatic-update-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Enables automatic updates of the application from the Web Debug Toolbar.

v1.0.3 2014-12-16 22:14 UTC

This package is not auto-updated.

Last update: 2020-10-30 18:52:57 UTC


README

This repository is no longer being actively maintained. We encourage you to not use this code. If you rely on this code you might want to fork the repository to keep your systems from breaking, if we remove this repository in the future.

LswAutomaticUpdateBundle

screenshot

Symfony2 bundle that enables automatic updates of the application from the Web Debug Toolbar.

screenshot

Installation

Installation is broken down in 4 easy steps.

Step 1: Download LswAutomaticUpdateBundle using composer

Add LswAutomaticUpdateBundle in your composer.json:

{
    "require": {
        "leaseweb/automatic-update-bundle": "*",
        ...
    }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update leaseweb/automatic-update-bundle

Composer will install the bundle to your project's vendor/leaseweb directory.

Step 2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    ...

    if (in_array($this->getEnvironment(), array('dev', 'test'))) {
        ...
        $bundles[] = new Lsw\AutomaticUpdateBundle\LswAutomaticUpdateBundle();
    }

}

Step 3: Add routes to support automatic update

Add the following lines to app/config/routing_dev.yml:

automatic_update:
    resource: "@LswAutomaticUpdateBundle/Resources/config/routing/update.yml"

Step 4: Allow access to the automatic update actions

Add the following lines to app/config/security.yml:

automatic_update:
    pattern: ^/update/
    security: false

Configuration

In parameters.yml you can specify the following:

parameters:
    automatic_update.options:
        secret: "SomeVerySecretPassword"
        dry_run_commands:
            - "svn status -u"
            - "php composer.phar update --dry-run --ansi"
            - "app/console doctrine:schema:update --dump-sql"
        execute_commands:
            - "svn up"
            - "php composer.phar update --ansi"
            - "app/console doctrine:schema:update --force"

NB: You might want to run 'apache2-mpm-itk' to enable your website to run as a normal user, not as 'www-data', because this will simplify file rights management.

License

This bundle is under the MIT license.

The "circular arrows" icon in the web debug toolbar is part of the Picas icon set (official website: http://www.picasicons.com). The icon is licensed and may only be used to identifying the LswAutomaticUpdateBundle in the Symfony2 web debug toolbar. All ownership and copyright of this icon remain the property of Rok Benedik.