截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

composer.json 880B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "symfony/inflector",
  3. "type": "library",
  4. "description": "Converts words between their singular and plural forms (English only)",
  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.1.3",
  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. }