Skip to content

Instantly share code, notes, and snippets.

@ollietb
Created June 18, 2012 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ollietb/2947908 to your computer and use it in GitHub Desktop.
Save ollietb/2947908 to your computer and use it in GitHub Desktop.
composer.json for symfony 2.0.15
<?php
$bundles = array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Symfony\Bundle\DoctrineBundle\DoctrineBundle(),
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(),
new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
new Oh\KisstagramBundle\OhKisstagramBundle(),
new Oh\InstagramBundle\OhInstagramBundle(),
new Oh\ContactUsBundle\OhContactUsBundle(),
new Oh\EmojiBundle\OhEmojiBundle(),
new Symfony\Bundle\DoctrineMongoDBBundle\DoctrineMongoDBBundle(),
new FOS\JsRoutingBundle\FOSJsRoutingBundle(),
new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
new Symfony\Bundle\DoctrineMigrationsBundle\DoctrineMigrationsBundle(),
new Symfony\Bundle\DoctrineFixturesBundle\DoctrineFixturesBundle(),
new Sensio\Bundle\BuzzBundle\SensioBuzzBundle(),
);
{
"repositories": [
{
"type": "package",
"package": {
"name": "elao/elao-notifier-bundle",
"version": "master",
"dist": {
"url": "https://github.com/Elao/ErrorNotifierBundle.git",
"type": "git"
},
"source": {
"url": "https://github.com/Elao/ErrorNotifierBundle.git",
"type": "git",
"reference": "8ccd05954dc90d814d75c79fb96d9a8768b2d61e"
},
"autoload": {
"psr-0": {
"Elao": ""
}
},
"target-dir": "Elao/ErrorNotifierBundle"
}
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.0.15",
"symfony/assetic-bundle": "2.0.x-dev",
"symfony/doctrine-bridge": "*",
"symfony/monolog-bundle": "*",
"symfony/swiftmailer-bundle" : "*",
"sensio/generator-bundle": "2.0.*",
"sensio/framework-extra-bundle": "2.0.*",
"sensio/distribution-bundle" : "*",
"sensio/buzz-bundle": "*",
"doctrine/orm": "2.1.7",
"doctrine/doctrine-migrations-bundle": "2.0.*",
"doctrine/mongodb-odm": "dev-fix/prepare-indexes",
"doctrine/mongodb-odm-bundle": "*",
"doctrine/doctrine-fixtures-bundle": "v2.0.1",
"twig/extensions": "*",
"jms/security-extra-bundle": "1.0.*",
"stof/doctrine-extensions-bundle": "*",
"friendsofsymfony/jsrouting-bundle" : "*",
"oh/emoji-bundle": "dev-master",
"elao/elao-notifier-bundle": "master"
},
"autoload": {
"psr-0": {
"Oh": "src/"
}
},
"scripts": {
"post-install-cmd": [
"Oh\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Oh\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Oh\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
],
"post-update-cmd": [
"Oh\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Oh\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Oh\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment