Created
April 18, 2013 15:35
-
-
Save oste/5413699 to your computer and use it in GitHub Desktop.
minimal composer.json for including FontAwesome 3.1.0-wip branch
This file contains hidden or 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
{ | |
"name": "symfony/framework-standard-edition", | |
"description": "The \"Symfony Standard Edition\" distribution", | |
"autoload": { | |
"psr-0": { "": "src/" } | |
}, | |
"require": { | |
"php": ">=5.3.3", | |
"symfony/symfony": "2.2.*", | |
"doctrine/orm": "~2.2,>=2.2.3", | |
"doctrine/doctrine-bundle": "1.2.*", | |
"twig/extensions": "1.0.*", | |
"symfony/assetic-bundle": "2.1.*", | |
"symfony/swiftmailer-bundle": "2.2.*", | |
"symfony/monolog-bundle": "2.2.*", | |
"sensio/distribution-bundle": "2.2.*", | |
"sensio/framework-extra-bundle": "2.2.*", | |
"sensio/generator-bundle": "2.2.*", | |
"jms/security-extra-bundle": "1.4.*", | |
"jms/di-extra-bundle": "1.3.*", | |
"fortawesome/font-awesome": "dev-master" | |
}, | |
"repositories": [ | |
{ | |
"type": "package", | |
"package": { | |
"name": "fortawesome/font-awesome", | |
"version": "master", | |
"source": { | |
"url": "https://github.com/FortAwesome/Font-Awesome.git", | |
"type": "git", | |
"reference": "3.1.0-wip" | |
} | |
} | |
} | |
], | |
"scripts": { | |
"post-install-cmd": [ | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" | |
], | |
"post-update-cmd": [ | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | |
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" | |
] | |
}, | |
"config": { | |
"bin-dir": "bin" | |
}, | |
"minimum-stability": "alpha", | |
"extra": { | |
"symfony-app-dir": "app", | |
"symfony-web-dir": "web", | |
"branch-alias": { | |
"dev-master": "2.2-dev" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment