composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "doctrine/inflector",
  3. "type": "library",
  4. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  5. "keywords": ["php", "strings", "words", "manipulation", "inflector", "inflection", "uppercase", "lowercase", "singular", "plural"],
  6. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  7. "license": "MIT",
  8. "authors": [
  9. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  10. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  11. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  12. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  13. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
  14. ],
  15. "require": {
  16. "php": "^7.2 || ^8.0"
  17. },
  18. "require-dev": {
  19. "doctrine/coding-standard": "^7.0",
  20. "phpstan/phpstan": "^0.11",
  21. "phpstan/phpstan-phpunit": "^0.11",
  22. "phpstan/phpstan-strict-rules": "^0.11",
  23. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "Doctrine\\Tests\\Inflector\\": "tests/Doctrine/Tests/Inflector"
  33. }
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "2.0.x-dev"
  38. }
  39. }
  40. }