composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "symfony/property-info",
  3. "type": "library",
  4. "description": "Symfony Property Info Component",
  5. "keywords": [
  6. "property",
  7. "type",
  8. "PHPDoc",
  9. "symfony",
  10. "validator",
  11. "doctrine"
  12. ],
  13. "homepage": "https://symfony.com",
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "Kévin Dunglas",
  18. "email": "dunglas@gmail.com"
  19. },
  20. {
  21. "name": "Symfony Community",
  22. "homepage": "https://symfony.com/contributors"
  23. }
  24. ],
  25. "require": {
  26. "php": ">=7.2.5",
  27. "symfony/polyfill-php80": "^1.15",
  28. "symfony/string": "^5.1"
  29. },
  30. "require-dev": {
  31. "symfony/serializer": "^4.4|^5.0",
  32. "symfony/cache": "^4.4|^5.0",
  33. "symfony/dependency-injection": "^4.4|^5.0",
  34. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  35. "doctrine/annotations": "~1.7"
  36. },
  37. "conflict": {
  38. "phpdocumentor/reflection-docblock": "<3.2.2",
  39. "phpdocumentor/type-resolver": "<0.3.0",
  40. "symfony/dependency-injection": "<4.4"
  41. },
  42. "suggest": {
  43. "psr/cache-implementation": "To cache results",
  44. "symfony/doctrine-bridge": "To use Doctrine metadata",
  45. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  46. "symfony/serializer": "To use Serializer metadata"
  47. },
  48. "autoload": {
  49. "psr-4": { "Symfony\\Component\\PropertyInfo\\": "" },
  50. "exclude-from-classmap": [
  51. "/Tests/"
  52. ]
  53. },
  54. "minimum-stability": "dev",
  55. "extra": {
  56. "branch-alias": {
  57. "dev-master": "5.1-dev"
  58. }
  59. }
  60. }