composer.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "sonata-project/user-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Symfony SonataUserBundle",
  5. "keywords": ["user", "sonata", "google authenticator"],
  6. "homepage": "http://sonata-project.org/bundles/user",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Thomas Rabaix",
  11. "email": "thomas.rabaix@sonata-project.org",
  12. "homepage": "http://sonata-project.org"
  13. },
  14. {
  15. "name": "Sonata Community",
  16. "homepage": "https://github.com/sonata-project/SonataUserBundle/contributors"
  17. }
  18. ],
  19. "require": {
  20. "php": "^5.3 || ^7.0",
  21. "friendsofsymfony/user-bundle": "^1.3",
  22. "sonata-project/admin-bundle": "^3.1",
  23. "sonata-project/core-bundle": "^3.2",
  24. "sonata-project/datagrid-bundle": "^2.2.1",
  25. "sonata-project/doctrine-extensions": "^1.0",
  26. "sonata-project/easy-extends-bundle": "^2.2",
  27. "sonata-project/google-authenticator": "^1.0 || ^2.0",
  28. "symfony/console": "^2.3",
  29. "symfony/form": "^2.3",
  30. "symfony/http-foundation": "^2.3",
  31. "symfony/security": "^2.3"
  32. },
  33. "require-dev": {
  34. "doctrine/orm": "^2.0",
  35. "friendsofsymfony/rest-bundle": "^1.5 || ^2.0",
  36. "jms/serializer-bundle": "^0.13 || ^1.0",
  37. "nelmio/api-doc-bundle": "^2.4",
  38. "sllh/php-cs-fixer-styleci-bridge": "^2.0",
  39. "sonata-project/block-bundle": "^3.2",
  40. "sonata-project/seo-bundle": "^2.0",
  41. "symfony/phpunit-bridge": "^2.8 || ^3.0"
  42. },
  43. "suggest": {
  44. "friendsofsymfony/rest-bundle": "For using the public API methods.",
  45. "jms/serializer": "For using the public API methods.",
  46. "nelmio/api-doc-bundle": "For using the public API methods.",
  47. "sonata-project/doctrine-orm-admin-bundle": "^3.0",
  48. "sonata-project/seo-bundle": "For SEO breadcrumb block service usage"
  49. },
  50. "conflict": {
  51. "friendsofsymfony/rest-bundle": "<1.1",
  52. "jms/serializer": "<0.13 || >=2.0",
  53. "nelmio/api-doc-bundle": "<2.4 || >= 3.0",
  54. "sonata-project/block-bundle": "<3.2",
  55. "sonata-project/doctrine-orm-admin-bundle": "<3.0 || >=4.0",
  56. "sonata-project/seo-bundle": "<2.0 || >=3.0"
  57. },
  58. "autoload": {
  59. "psr-4": { "Sonata\\UserBundle\\": "" },
  60. "exclude-from-classmap": [
  61. "Tests/"
  62. ]
  63. },
  64. "autoload-dev": {
  65. "psr-4": { "Sonata\\UserBundle\\Tests\\": "Tests/" }
  66. },
  67. "config": {
  68. "sort-packages": true
  69. },
  70. "extra": {
  71. "branch-alias": {
  72. "dev-master": "3.x-dev"
  73. }
  74. }
  75. }