composer.json 678B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "sensio/distribution-bundle",
  3. "description": "The base bundle for the Symfony Distributions",
  4. "keywords": ["distribution","configuration"],
  5. "type": "symfony-bundle",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Fabien Potencier",
  10. "email": "fabien@symfony.com"
  11. }
  12. ],
  13. "require": {
  14. "symfony/framework-bundle": "2.1.*"
  15. },
  16. "autoload": {
  17. "psr-0": { "Sensio\\Bundle\\DistributionBundle": "" }
  18. },
  19. "target-dir": "Sensio/Bundle/DistributionBundle",
  20. "extra": {
  21. "branch-alias": {
  22. "dev-master": "2.1.x-dev"
  23. }
  24. },
  25. "minimum-stability": "dev"
  26. }