Skip to content

Commit

Permalink
Fix failing tests due to symfony/yaml autoloading
Browse files Browse the repository at this point in the history
- phpunit/phpunit was relying on functionality from symfony/yaml that was
  removed in version 2.2.0; pinning symfony/yaml to 2.1.* solves those issues.
  • Loading branch information
weierophinney committed Mar 5, 2013
1 parent 38fe572 commit 1f43d68
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion composer.json
Expand Up @@ -13,7 +13,8 @@
},
"require-dev": {
"doctrine/common": ">=2.1",
"phpunit/PHPUnit": "3.7.*"
"phpunit/PHPUnit": "3.7.*",
"symfony/yaml": "2.1.*"
},
"suggest": {
"doctrine/common": "Doctrine\\Common >=2.1 for annotation features",
Expand Down

0 comments on commit 1f43d68

Please sign in to comment.