composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "sonata-project/block-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Symfony SonataBlockBundle",
  5. "keywords": ["sonata", "block"],
  6. "homepage": "https://sonata-project.org/bundles/block",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Thomas Rabaix",
  11. "email": "thomas.rabaix@sonata-project.org",
  12. "homepage": "https://sonata-project.org"
  13. },
  14. {
  15. "name": "Sonata Community",
  16. "homepage": "https://github.com/sonata-project/SonataBlockBundle/contributors"
  17. }
  18. ],
  19. "require": {
  20. "php": "^5.6 || ^7.0",
  21. "doctrine/common": "^2.3",
  22. "sonata-project/cache": "^1.0 || ^2.0",
  23. "sonata-project/core-bundle": "^3.4",
  24. "symfony/form": "^2.8 || ^3.2 || ^4.0",
  25. "symfony/http-kernel": "^2.8 || ^3.2 || ^4.0",
  26. "symfony/twig-bundle": "^2.8 || ^3.2 || ^4.0",
  27. "twig/twig": "^1.34 || ^2.0"
  28. },
  29. "require-dev": {
  30. "jms/di-extra-bundle": "^1.7",
  31. "knplabs/knp-menu-bundle": "^2.0",
  32. "sonata-project/admin-bundle": "^3.22",
  33. "symfony/phpunit-bridge": "^3.3 || ^4.0"
  34. },
  35. "conflict": {
  36. "jms/di-extra-bundle": "<1.7.0"
  37. },
  38. "suggest": {
  39. "jms/di-extra-bundle": "Annotations for Block definition",
  40. "knplabs/knp-menu-bundle": "^2.0",
  41. "sonata-project/cache-bundle": "^3.0"
  42. },
  43. "autoload": {
  44. "psr-4": { "Sonata\\BlockBundle\\": "src/" },
  45. "files": ["src/Resources/stubs/symfony2.php"]
  46. },
  47. "autoload-dev": {
  48. "psr-4": { "Sonata\\BlockBundle\\Tests\\": "tests/" }
  49. },
  50. "config": {
  51. "sort-packages": true
  52. },
  53. "extra": {
  54. "branch-alias": {
  55. "dev-master": "3.x-dev"
  56. }
  57. }
  58. }