composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "mmoreram/php-formatter": "~1.0"
  35. },
  36. "target-dir": "Mmoreram/GearmanBundle",
  37. "autoload": {
  38. "psr-0": { "Mmoreram\\GearmanBundle": "" }
  39. },
  40. "minimum-stability": "stable",
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "3.0-dev"
  44. }
  45. }
  46. }