composer.json 931 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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/polyfill-ctype": "~1.8"
  28. },
  29. "autoload": {
  30. "psr-4": { "Symfony\\Component\\Inflector\\": "" },
  31. "exclude-from-classmap": [
  32. "/Tests/"
  33. ]
  34. },
  35. "minimum-stability": "dev",
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "5.0-dev"
  39. }
  40. }
  41. }