Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/1.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed May 24, 2016
2 parents 85eb0a3 + 27bff9f commit a8ec937
Show file tree
Hide file tree
Showing 9 changed files with 2,352 additions and 123 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ php:

before_script:
- mysql -e 'create database isotope_migration_testsuite;'
- composer install --prefer-source --dev
- composer install

script: phpunit --configuration phpunit.travis.xml --coverage-clover=coverage.clover

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
},
"require": {
"silex/silex": "~1.2",
"twig/twig": ">=1.8,<2.0-dev",
"symfony/translation": "~2.3 | ~3.0",
"symfony/config": "~2.3 | ~3.0",
"symfony/twig-bridge": "~2.3 | ~3.0",
"twig/twig": "~1.8",
"symfony/translation": "~2.3",
"symfony/config": "~2.3",
"symfony/twig-bridge": "~2.3",
"doctrine/dbal": "~2.4"
},
"require-dev": {
"phpunit/dbunit": "1.3.*",
"symfony/finder": "~2.4 | ~3.0",
"symfony/finder": "~2.4",
"phine/phar": "1.*",
"symfony/browser-kit": "~2.5 | ~3.0"
"symfony/browser-kit": "~2.5"
}
}
217 changes: 114 additions & 103 deletions composer.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion services/ProductCollectionMigrationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function getStatus()
}

// Nothing to do
if ($this->dbcheck->tableIsEmpty('tl_iso_orders')) {
if ($this->dbcheck->tableIsEmpty('tl_iso_orders') || 0 === count($this->getSurchargesByCollection())) {
return MigrationServiceInterface::STATUS_READY;
}

Expand Down
Loading

0 comments on commit a8ec937

Please sign in to comment.