Last active
August 29, 2015 14:02
-
-
Save trq/4a9e9263cb6788e1641d to your computer and use it in GitHub Desktop.
Re-define the package inline in your composer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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