Skip to content

Commit

Permalink
Merge pull request #74 from trivago-timmo/develop
Browse files Browse the repository at this point in the history
Updated package dependency on latest symfony/yaml
  • Loading branch information
kschroeder committed Sep 17, 2018
2 parents 7ba49c3 + 2773dbb commit c804a88
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -31,9 +31,8 @@
"require": {
"zendframework/zend-cache": "^2.0",
"psr/container": "^1",
"symfony/console": "~2.3|~3.0",
"psr/http-message": "^1.0",
"symfony/yaml": "^2"
"symfony/console": "~2.3|~3.0|^4.0",
"psr/http-message": "^1.0"
},
"suggest": {
"zendframework/zend-psr7bridge": "For use with the optional view layer",
Expand All @@ -43,7 +42,8 @@
"zendframework/zend-i18n": "For use with the optional view layer",
"zendframework/zend-json": "For use with the optional view layer",
"mongodb/mongodb": "If you intend to use MongoDB for your configuration storage",
"zendframework/zend-db": "If you intend to use a relational DB for your configuration storage"
"zendframework/zend-db": "If you intend to use a relational DB for your configuration storage",
"symfony/yaml": "If you intend to use yaml for parsing configuration files"
},
"bin": ["bin/magium-configuration"]
}
8 changes: 8 additions & 0 deletions tests/Config/YamlConfigurationRepositoryTest.php
Expand Up @@ -7,6 +7,14 @@

class YamlConfigurationRepositoryTest extends TestCase
{
protected function setUp()
{
if (!class_exists('Symfony\Component\Yaml\Yaml')) {
$this->markTestSkipped(
'The package symfony/yaml is not available.'
);
}
}

public function testXpath()
{
Expand Down

0 comments on commit c804a88

Please sign in to comment.