composer.json 973 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "symfony/inflector",
  3. "type": "library",
  4. "description": "Symfony Inflector Component",
  5. "keywords": [
  6. "string",
  7. "inflection",
  8. "singularize",
  9. "pluralize",
  10. "words",
  11. "symfony"
  12. ],
  13. "homepage": "https://symfony.com",
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "Bernhard Schussek",
  18. "email": "bschussek@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/deprecation-contracts": "^2.1",
  28. "symfony/string": "^5.1"
  29. },
  30. "autoload": {
  31. "psr-4": { "Symfony\\Component\\Inflector\\": "" },
  32. "exclude-from-classmap": [
  33. "/Tests/"
  34. ]
  35. },
  36. "minimum-stability": "dev",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "5.1-dev"
  40. }
  41. }
  42. }