Skip to content

Instantly share code, notes, and snippets.

@trq
Last active August 29, 2015 14:02
Show Gist options
  • Save trq/4a9e9263cb6788e1641d to your computer and use it in GitHub Desktop.
Save trq/4a9e9263cb6788e1641d to your computer and use it in GitHub Desktop.
Re-define the package inline in your composer.json
{
"repositories": {
"doctrine-fixtures-bundle": {
"name": "doctrine/doctrine-fixtures-bundle",
"type": "symfony-bundle",
"version": "2.0.0",
"require": {
"php": ">=5.3.2",
"symfony/symfony": ">=2.0"
},
"autoload": {
"psr-0": { "Doctrine\\Bundle\\FixturesBundle": "" }
},
"target-dir": "Doctrine/Bundle/FixturesBundle",
"source": {
"url": "https://github.com/doctrine/DoctrineFixturesBundle.git",
"type": "git",
"reference": "2.0"
}
}
}
"require": {
"doctrine/doctrine-fixtures-bundle"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment