composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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": "MIT",
  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.3",
  23. "doctrine/doctrine-cache-bundle": "~1.0",
  24. "doctrine/common": "~2.2",
  25. "symfony/dependency-injection": "~2.1",
  26. "symfony/framework-bundle": "~2.4",
  27. "symfony/http-kernel": "~2.1",
  28. "symfony/console": "~2.1",
  29. "symfony/config": "~2.1",
  30. "symfony/finder": "~2.1"
  31. },
  32. "target-dir": "Mmoreram/GearmanBundle",
  33. "autoload": {
  34. "psr-0": { "Mmoreram\\GearmanBundle": "" }
  35. },
  36. "minimum-stability": "stable",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "4.0-dev"
  40. }
  41. }
  42. }