Skip to content

Commit

Permalink
Merge pull request #9 from skroczek/lowest-dependencies
Browse files Browse the repository at this point in the history
Push the lowest dependencies up.
  • Loading branch information
schmittjoh authored Sep 12, 2016
2 parents 725da1b + 36b720a commit 47413c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"license": "Apache2",

"require": {
"jms/metadata": "1.*",
"jms/metadata": "~1.3",
"symfony/property-access": "~2.2 || ~3.0"
},

"require-dev": {
"symfony/routing": "~2.1||~3.0",
"doctrine/common": "2.*",
"doctrine/common": "~2.2",
"symfony/yaml": "~2.0 || ~3.0"
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ class Symfony22AdapterTest extends \PHPUnit_Framework_TestCase

public function testGenerate()
{
if(!defined('Symfony\Component\Routing\Generator\UrlGeneratorInterface::ABSOLUTE_URL')){
$this->markTestSkipped('Skipping this test because required constant UrlGeneratorInterface::ABSOLUTE_URL is not defined.');
}
$this->router->expects($this->once())
->method('generate')
->with('foo', array('bar' => 'baz'), UrlGeneratorInterface::ABSOLUTE_URL)
Expand Down

0 comments on commit 47413c4

Please sign in to comment.