composer.json 890 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "mmoreram/gearman-bundle",
  3. "replace": {
  4. "mmoreramerino/gearman-bundle": "dev-master"
  5. },
  6. "description": "Adds gearman support to your Symfony2 project",
  7. "keywords": ["gearman"],
  8. "homepage": "https://github.com/mmoreram/GearmanBundle",
  9. "type": "symfony-bundle",
  10. "license": "Apache",
  11. "authors": [
  12. {
  13. "name": "Marc Morera",
  14. "email": "yuhu@mmoreram.com"
  15. },
  16. {
  17. "name": "Symfony Community",
  18. "homepage": "https://github.com/mmoreram/GearmanBundle/contributors"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=5.3.2",
  23. "symfony/framework-bundle": ">=2.0",
  24. "liip/doctrine-cache-bundle": "dev-master",
  25. "ext-gearman": "*",
  26. },
  27. "target-dir": "Mmoreram/GearmanBundle",
  28. "autoload": {
  29. "psr-0": { "Mmoreram\\GearmanBundle": "" }
  30. }
  31. }