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

Commit

Permalink
Merge branch 'hotfix/updated-dependencies'
Browse files Browse the repository at this point in the history
Close #38
  • Loading branch information
weierophinney committed Mar 2, 2016
2 parents 0ae8ffa + ca5231f commit 43aa6d5
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 37 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ before_install:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer require --dev --no-update satooshi/php-coveralls ; fi
- if [[ $SERVICE_MANAGER_VERSION != '' ]]; then composer require --dev --no-update "zendframework/zend-servicemanager:$SERVICE_MANAGER_VERSION" ; fi
- if [[ $SERVICE_MANAGER_VERSION == '' ]]; then composer require --dev --no-update "zendframework/zend-servicemanager:^3.0.3" ; fi
- if [[ $SERVICE_MANAGER_VERSION == '' ]]; then composer remove --dev --no-update zendframework/zend-view ; fi
- if [[ $EVENT_MANAGER_VERSION != '' ]]; then composer require --dev --no-update "zendframework/zend-eventmanager:$EVENT_MANAGER_VERSION" ; fi
- if [[ $EVENT_MANAGER_VERSION == '' ]]; then composer require --dev --no-update "zendframework/zend-eventmanager:^3.0" ; fi

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"zendframework/zend-filter": "^2.6.1",
"zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
"zendframework/zend-validator": "^2.6",
"zendframework/zend-view": "^2.5.3",
"zendframework/zend-view": "^2.6.3",
"fabpot/php-cs-fixer": "1.7.*",
"phpunit/PHPUnit": "~4.0"
},
Expand Down
7 changes: 0 additions & 7 deletions test/View/Helper/CurrencyFormatTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ class CurrencyFormatTest extends \PHPUnit_Framework_TestCase
*/
public function setUp()
{
if (! interface_exists('Zend\View\Helper\HelperInterface')) {
$this->markTestSkipped(
'Skipping tests that utilize zend-view until that component is '
. 'forwards-compatible with zend-stdlib and zend-servicemanager v3'
);
}

if (!extension_loaded('intl')) {
$this->markTestSkipped('ext/intl not enabled');
}
Expand Down
7 changes: 0 additions & 7 deletions test/View/Helper/NumberFormatTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,6 @@ class NumberFormatTest extends \PHPUnit_Framework_TestCase
*/
public function setUp()
{
if (! interface_exists('Zend\View\Helper\HelperInterface')) {
$this->markTestSkipped(
'Skipping tests that utilize zend-view until that component is '
. 'forwards-compatible with zend-stdlib and zend-servicemanager v3'
);
}

if (!extension_loaded('intl')) {
$this->markTestSkipped('ext/intl not enabled');
}
Expand Down
7 changes: 0 additions & 7 deletions test/View/Helper/PluralTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@ class PluralTest extends \PHPUnit_Framework_TestCase
*/
public function setUp()
{
if (! interface_exists('Zend\View\Helper\HelperInterface')) {
$this->markTestSkipped(
'Skipping tests that utilize zend-view until that component is '
. 'forwards-compatible with zend-stdlib and zend-servicemanager v3'
);
}

if (!extension_loaded('intl')) {
$this->markTestSkipped('ext/intl not enabled');
}
Expand Down
7 changes: 0 additions & 7 deletions test/View/Helper/TranslatePluralTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ class TranslatePluralTest extends \PHPUnit_Framework_TestCase
*/
public function setUp()
{
if (! interface_exists('Zend\View\Helper\HelperInterface')) {
$this->markTestSkipped(
'Skipping tests that utilize zend-view until that component is '
. 'forwards-compatible with zend-stdlib and zend-servicemanager v3'
);
}

$this->helper = new TranslatePluralHelper();
}

Expand Down
7 changes: 0 additions & 7 deletions test/View/Helper/TranslateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ class TranslateTest extends \PHPUnit_Framework_TestCase
*/
public function setUp()
{
if (! interface_exists('Zend\View\Helper\HelperInterface')) {
$this->markTestSkipped(
'Skipping tests that utilize zend-view until that component is '
. 'forwards-compatible with zend-stdlib and zend-servicemanager v3'
);
}

$this->helper = new TranslateHelper();
}

Expand Down

0 comments on commit 43aa6d5

Please sign in to comment.