diff --git a/.travis.yml b/.travis.yml index 836d1e9..c907740 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,9 @@ language: php php: - 5.4 -# - 5.5 + - 5.5 # - 5.6 -# - 7.0 + - 7.0 ## Update composer and run the appropriate composer command before_script: diff --git a/readme.md b/readme.md index 4719d17..d5f3936 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,14 @@ #Mothership Magerun Addons -![](https://travis-ci.org/mothership-gmbh/magerun_mothership.svg?branch=develop) +![](https://travis-ci.org/mothership-gmbh/magerun_mothership.svg) + + +[![Dependency Status](https://www.versioneye.com/user/projects/56d70789d71695003e63118a/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56d70789d71695003e63118a) +[![Latest Stable Version](https://poser.pugx.org/mothership/mothership_magerun/v/stable)](https://packagist.org/packages/mothership/mothership_magerun) +[![Total Downloads](https://poser.pugx.org/mothership/mothership_magerun/downloads)](https://packagist.org/packages/mothership/mothership_magerun) +[![Latest Unstable Version](https://poser.pugx.org/mothership/mothership_magerun/v/unstable)](https://packagist.org/packages/mothership/mothership_magerun) +[![License](https://poser.pugx.org/mothership/mothership_magerun/license)](https://packagist.org/packages/mothership/mothership_magerun) + ========================= This repository contains a list of extensions, which might be useful for your development workflow. diff --git a/src/lib/n98-magerun/modules/mothership_addons/src/Mothership/Magerun/Base/Command/Workflow/RunCommand.php b/src/lib/n98-magerun/modules/mothership_addons/src/Mothership/Magerun/Base/Command/Workflow/RunCommand.php index 9ce6783..5d63d30 100644 --- a/src/lib/n98-magerun/modules/mothership_addons/src/Mothership/Magerun/Base/Command/Workflow/RunCommand.php +++ b/src/lib/n98-magerun/modules/mothership_addons/src/Mothership/Magerun/Base/Command/Workflow/RunCommand.php @@ -204,8 +204,8 @@ protected function execute(InputInterface $input, OutputInterface $output) $this->printCommand($args, $output); // TODO: Check if queue is enabled - \Resque::setBackend(\Mage::getStoreConfig('mothership_intex/queue/host')); - \Resque::enqueue(\Mage::getStoreConfig('mothership_intex/queue/name'), '\Mothership\Magerun\Queue\Jobs\General', $args, true); + \Resque::setBackend(\Mage::getStoreConfig('mothership_magerun/queue/host')); + \Resque::enqueue(\Mage::getStoreConfig('mothership_magerun/queue/name'), '\Mothership\Magerun\Queue\Jobs\General', $args, true); } else { $stateMachine = new \Mothership\StateMachine\StateMachine($input_path . '/' . $filename); $stateMachine->run($this->getArguments($input, $output));