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. "symfony/framework-bundle": ">=2.1",
  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. },
  31. "require-dev": {
  32. "phpunit/phpunit": "3.7.*"
  33. },
  34. "target-dir": "Mmoreram/GearmanBundle",
  35. "autoload": {
  36. "psr-0": { "Mmoreram\\GearmanBundle": "" }
  37. },
  38. "minimum-stability": "stable",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.3-dev"
  42. }
  43. }
  44. }