composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "dragon-code/pretty-array",
  3. "description": "Simple conversion of an array to a pretty view",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "pretty array",
  8. "pretty",
  9. "array",
  10. "dragon code",
  11. "dragon",
  12. "andrey helldar"
  13. ],
  14. "authors": [
  15. {
  16. "name": "Andrey Helldar",
  17. "email": "helldar@dragon-code.pro",
  18. "homepage": "https://dragon-code.pro"
  19. }
  20. ],
  21. "support": {
  22. "issues": "https://github.com/TheDragonCode/pretty-array/issues",
  23. "source": "https://github.com/TheDragonCode/pretty-array"
  24. },
  25. "funding": [
  26. {
  27. "type": "boosty",
  28. "url": "https://boosty.to/dragon-code"
  29. },
  30. {
  31. "type": "yoomoney",
  32. "url": "https://yoomoney.ru/to/410012608840929"
  33. }
  34. ],
  35. "require": {
  36. "php": "^8.0",
  37. "ext-dom": "*",
  38. "ext-mbstring": "*",
  39. "dragon-code/contracts": "^2.20",
  40. "dragon-code/support": "^6.11.2"
  41. },
  42. "require-dev": {
  43. "phpunit/phpunit": "^9.6 || ^10.0 || ^11.0 || ^12.0"
  44. },
  45. "suggest": {
  46. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  47. },
  48. "minimum-stability": "stable",
  49. "prefer-stable": true,
  50. "autoload": {
  51. "psr-4": {
  52. "DragonCode\\PrettyArray\\": "src"
  53. }
  54. },
  55. "autoload-dev": {
  56. "psr-4": {
  57. "Tests\\": "tests"
  58. }
  59. },
  60. "config": {
  61. "allow-plugins": {
  62. "dragon-code/codestyler": true,
  63. "ergebnis/composer-normalize": true,
  64. "friendsofphp/php-cs-fixer": true,
  65. "symfony/thanks": true
  66. },
  67. "preferred-install": "dist",
  68. "sort-packages": true
  69. }
  70. }