performer/vagrant

Vagrant PHPStorm Command Line Tools Console

1.0.0 2015-10-30 20:59 UTC

This package is auto-updated.

Last update: 2024-04-19 22:51:19 UTC


README

Symfony bundle -> Contain vagrant commands + Symfony and Doctrine Commands executed directly in "vagrant ssh --command 'bin/console some:command' "

Composer

Enable the Bundle in AppKernel.php

"require": {
        ...
        "performer/vagrant": "dev-master"
    }
// app/AppKernel.php
// use ...

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new Performer\VagrantBundle\PerformerVagrantBundle(),
        );

        // ...
    }

    // ...
}

Use PHPStorm

Settings -> Command Line Tools Console -> + (new command) -> Choose Tool (Tool based on Symfony Console) -> Alias (v) -> Path to script (bin/vagrant)

Configuration example

You can configure default query parameter names and templates

performer_vagrant:
    defaults:
        remote_php_interpreter: /usr/bin/php
        remote_site_dir: /var/www
        remote_symfony_console: /bin/console
    users:
        remote_commands: ['Vendor\Path\Command', ... ]

Command example

vagrant ssh --command '/usr/bin/php /var/www/bin/console cache:clear --env=dev'