composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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": "^10",
  20. "phpstan/phpstan": "^1.8",
  21. "phpstan/phpstan-phpunit": "^1.1",
  22. "phpstan/phpstan-strict-rules": "^1.3",
  23. "phpunit/phpunit": "^8.5 || ^9.5",
  24. "vimeo/psalm": "^4.25"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Doctrine\\Tests\\Inflector\\": "tests/Doctrine/Tests/Inflector"
  34. }
  35. },
  36. "config": {
  37. "allow-plugins": {
  38. "dealerdirect/phpcodesniffer-composer-installer": true
  39. }
  40. }
  41. }