composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "symfony/security-acl",
  3. "type": "library",
  4. "description": "Symfony Security Component - ACL (Access Control List)",
  5. "keywords": [],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.5.9",
  20. "symfony/security-core": "~2.8|~3.0|~4.0"
  21. },
  22. "require-dev": {
  23. "symfony/phpunit-bridge": "~2.8|~3.0|~4.0",
  24. "doctrine/common": "~2.2",
  25. "doctrine/dbal": "~2.2",
  26. "psr/log": "~1.0"
  27. },
  28. "suggest": {
  29. "symfony/class-loader": "For using the ACL generateSql script",
  30. "symfony/finder": "For using the ACL generateSql script",
  31. "doctrine/dbal": "For using the built-in ACL implementation"
  32. },
  33. "autoload": {
  34. "psr-4": { "Symfony\\Component\\Security\\Acl\\": "" },
  35. "exclude-from-classmap": [
  36. "/Tests/"
  37. ]
  38. },
  39. "minimum-stability": "dev",
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "3.0-dev"
  43. }
  44. }
  45. }