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.
Symfony2 bundle that enables automatic updates of the application from the Web Debug Toolbar.
Installation is broken down in 4 easy steps.
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.
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();
}
}
Add the following lines to app/config/routing_dev.yml
:
automatic_update:
resource: "@LswAutomaticUpdateBundle/Resources/config/routing/update.yml"
Add the following lines to app/config/security.yml
:
automatic_update:
pattern: ^/update/
security: false
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.
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.