composer.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "dragon-code/support",
  3. "description": "Support package is a collection of helpers and tools for any project.",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "dragon",
  8. "dragon-code",
  9. "framework",
  10. "helper",
  11. "helpers",
  12. "laravel",
  13. "php",
  14. "support",
  15. "symfony",
  16. "yii",
  17. "yii2"
  18. ],
  19. "authors": [
  20. {
  21. "name": "Andrey Helldar",
  22. "email": "helldar@dragon-code.pro",
  23. "homepage": "https://dragon-code.pro"
  24. }
  25. ],
  26. "support": {
  27. "issues": "https://github.com/TheDragonCode/support/issues",
  28. "source": "https://github.com/TheDragonCode/support"
  29. },
  30. "funding": [
  31. {
  32. "type": "boosty",
  33. "url": "https://boosty.to/dragon-code"
  34. },
  35. {
  36. "type": "yoomoney",
  37. "url": "https://yoomoney.ru/to/410012608840929"
  38. }
  39. ],
  40. "require": {
  41. "php": "^8.1",
  42. "ext-bcmath": "*",
  43. "ext-ctype": "*",
  44. "ext-dom": "*",
  45. "ext-json": "*",
  46. "ext-mbstring": "*",
  47. "dragon-code/contracts": "^2.22.0",
  48. "psr/http-message": "^1.0.1 || ^2.0",
  49. "symfony/polyfill-php81": "^1.25",
  50. "voku/portable-ascii": "^1.4.8 || ^2.0.1"
  51. },
  52. "require-dev": {
  53. "illuminate/contracts": "^9.0 || ^10.0 || ^11.0 || ^12.0",
  54. "phpunit/phpunit": "^9.6 || ^11.0 || ^12.0",
  55. "symfony/var-dumper": "^6.0 || ^7.0"
  56. },
  57. "conflict": {
  58. "andrey-helldar/support": "*"
  59. },
  60. "suggest": {
  61. "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  62. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  63. },
  64. "minimum-stability": "stable",
  65. "prefer-stable": true,
  66. "autoload": {
  67. "psr-4": {
  68. "DragonCode\\Support\\": "src"
  69. }
  70. },
  71. "autoload-dev": {
  72. "psr-4": {
  73. "Tests\\": "tests"
  74. }
  75. },
  76. "config": {
  77. "allow-plugins": {
  78. "dragon-code/codestyler": true,
  79. "ergebnis/composer-normalize": true,
  80. "friendsofphp/php-cs-fixer": true,
  81. "symfony/thanks": true
  82. },
  83. "preferred-install": "dist",
  84. "sort-packages": true
  85. },
  86. "extra": {
  87. "dragon-code": {
  88. "docs-generator": {
  89. "preview": {
  90. "brand": "php",
  91. "vendor": "The Dragon Code"
  92. }
  93. }
  94. }
  95. }
  96. }