Skip to content
This repository has been archived by the owner on May 30, 2019. It is now read-only.

Commit

Permalink
Updated composer dependencies
Browse files Browse the repository at this point in the history
* Fixed for prefer-lowest as well
  • Loading branch information
mmoreram committed May 27, 2015
1 parent f627459 commit a935994
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 18 deletions.
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
"ext-redis": "*",

"symfony/symfony": "~2.6",
"symfony/framework-bundle": "~2.6, >=2.6.5",
"symfony/framework-bundle": "^2.6.5",
"symfony/assetic-bundle": "~2.5",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.6",
"symfony/proxy-manager-bridge": "~2.6, >=2.6.3",
"symfony/dependency-injection": "~2.6, >=2.6.3",
"symfony/proxy-manager-bridge": "^2.6.3",
"symfony/dependency-injection": "^2.6.3",

"ocramius/proxy-manager": "~1.0",
"doctrine/orm": "~2.5",
Expand All @@ -64,12 +64,12 @@
"paymentsuite/paypal-web-checkout-bundle": "~1.5.0",
"incenteev/composer-parameter-handler": "~2.0",
"hwi/oauth-bundle": "0.4.*@dev",
"snc/redis-bundle": "~1.1, >=1.1.8",
"snc/redis-bundle": "^1.1.8",
"predis/predis": "0.8.7",
"jms/i18n-routing-bundle": "1.1.1",

"mmoreram/controller-extra-bundle": "~1.0, >=1.1.11",
"mmoreram/extractor": "~1.0, >=1.1.1",
"mmoreram/controller-extra-bundle": "^1.1.11",
"mmoreram/extractor": "^1.1.1",
"mmoreram/cache-flush-bundle": "0.1.1",

"elcodi/attribute-bundle": "0.5.18",
Expand Down Expand Up @@ -118,15 +118,15 @@
"doctrine/data-fixtures": "^1.1",
"behat/behat": "~3.0",
"behat/symfony2-extension": "~2.0",
"behat/mink-extension": "~2.0, >=2.0.1",
"behat/mink-extension": "^2.0.1",
"behat/mink-browserkit-driver": "~1.2",
"behat/mink-selenium2-driver": "~1.2",
"behat/mink": "~1.6",
"phpunit/phpunit": "4.5.0",

"mmoreram/php-formatter": "1.0.4",
"fabpot/php-cs-fixer": "1.4.2",
"visithor/visithor-bundle": "~0.1, >=0.1.7"
"visithor/visithor-bundle": "^0.1.8"
},
"scripts": {
"post-install-cmd": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,16 @@ public function setUp(KernelInterface $kernel)
parent::setUp($kernel);

$this
->executeCommand('doctrine:database:drop', [
'--force' => true,
])
->executeCommand('doctrine:database:create')
->executeCommand('doctrine:schema:create')
->executeCommand('doctrine:fixtures:load', [
'--fixtures' => $kernel
'--no-booster' => true,
'--fixtures' => $kernel
->getRootDir() . '/../src/Elcodi/Fixtures',
])
->executeCommand('elcodi:plugins:load')
->executeCommand('elcodi:configuration:set', [
'identifier' => 'store.template',
'value' => '"StoreTemplateBundle"',
])
->executeCommand('assets:install')
->executeCommand('assetic:dump');
'value' => '"StoreTemplateBundle"',
]);
}

/**
Expand Down

0 comments on commit a935994

Please sign in to comment.