composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "symfony/framework-bundle": ">=2.2",
  24. "doctrine/common": ">=2.2",
  25. "symfony/console": ">=2.1",
  26. "symfony/config": ">=2.1",
  27. "symfony/http-kernel": ">=2.1",
  28. "symfony/dependency-injection": ">=2.1",
  29. "doctrine/doctrine-cache-bundle": "1.0.0",
  30. "symfony/finder": ">=2.1"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "3.7.*"
  34. },
  35. "target-dir": "Mmoreram/GearmanBundle",
  36. "autoload": {
  37. "psr-0": { "Mmoreram\\GearmanBundle": "" }
  38. },
  39. "minimum-stability": "stable",
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "2.3-dev"
  43. }
  44. }
  45. }