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

Commit a8ec937

Browse files
committed
Merge branch 'hotfix/1.0.5'
2 parents 85eb0a3 + 27bff9f commit a8ec937

File tree

9 files changed

+2352
-123
lines changed

9 files changed

+2352
-123
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ php:
88

99
before_script:
1010
- mysql -e 'create database isotope_migration_testsuite;'
11-
- composer install --prefer-source --dev
11+
- composer install
1212

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

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414
},
1515
"require": {
1616
"silex/silex": "~1.2",
17-
"twig/twig": ">=1.8,<2.0-dev",
18-
"symfony/translation": "~2.3 | ~3.0",
19-
"symfony/config": "~2.3 | ~3.0",
20-
"symfony/twig-bridge": "~2.3 | ~3.0",
17+
"twig/twig": "~1.8",
18+
"symfony/translation": "~2.3",
19+
"symfony/config": "~2.3",
20+
"symfony/twig-bridge": "~2.3",
2121
"doctrine/dbal": "~2.4"
2222
},
2323
"require-dev": {
2424
"phpunit/dbunit": "1.3.*",
25-
"symfony/finder": "~2.4 | ~3.0",
25+
"symfony/finder": "~2.4",
2626
"phine/phar": "1.*",
27-
"symfony/browser-kit": "~2.5 | ~3.0"
27+
"symfony/browser-kit": "~2.5"
2828
}
2929
}

composer.lock

Lines changed: 114 additions & 103 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/ProductCollectionMigrationService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function getStatus()
5656
}
5757

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

0 commit comments

Comments
 (0)