composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "doctrine/inflector",
  3. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "php",
  8. "strings",
  9. "words",
  10. "manipulation",
  11. "inflector",
  12. "inflection",
  13. "uppercase",
  14. "lowercase",
  15. "singular",
  16. "plural"
  17. ],
  18. "authors": [
  19. {
  20. "name": "Guilherme Blanco",
  21. "email": "guilhermeblanco@gmail.com"
  22. },
  23. {
  24. "name": "Roman Borschel",
  25. "email": "roman@code-factory.org"
  26. },
  27. {
  28. "name": "Benjamin Eberlei",
  29. "email": "kontakt@beberlei.de"
  30. },
  31. {
  32. "name": "Jonathan Wage",
  33. "email": "jonwage@gmail.com"
  34. },
  35. {
  36. "name": "Johannes Schmitt",
  37. "email": "schmittjoh@gmail.com"
  38. }
  39. ],
  40. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  41. "require": {
  42. "php": "^7.2 || ^8.0"
  43. },
  44. "require-dev": {
  45. "doctrine/coding-standard": "^12.0 || ^13.0",
  46. "phpstan/phpstan": "^1.12 || ^2.0",
  47. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  48. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  49. "phpunit/phpunit": "^8.5 || ^12.2"
  50. },
  51. "autoload": {
  52. "psr-4": {
  53. "Doctrine\\Inflector\\": "src"
  54. }
  55. },
  56. "autoload-dev": {
  57. "psr-4": {
  58. "Doctrine\\Tests\\Inflector\\": "tests"
  59. }
  60. },
  61. "config": {
  62. "allow-plugins": {
  63. "dealerdirect/phpcodesniffer-composer-installer": true
  64. },
  65. "sort-packages": true
  66. }
  67. }