composer.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "name": "proxypanel/proxypanel",
  3. "type": "project",
  4. "description": "Proxy panel is a proxy account management system, it supports shadowsocks, shadowsocksr, v2ray, trojan and more.",
  5. "keywords": [
  6. "laravel",
  7. "proxypanel"
  8. ],
  9. "license": "GPL-3.0-or-later",
  10. "require": {
  11. "php": "^8.1",
  12. "ext-dom": "*",
  13. "ext-json": "*",
  14. "ext-mbstring": "*",
  15. "ext-openssl": "*",
  16. "ext-pdo": "*",
  17. "ext-simplexml": "*",
  18. "arcanedev/log-viewer": "^10.0",
  19. "geoip2/geoip2": "^v2.11",
  20. "guzzlehttp/guzzle": "^7.2",
  21. "hashids/hashids": "^5.0",
  22. "ip2location/ip2location-laravel": "^1.2",
  23. "ipip/db": "^1.0",
  24. "jenssegers/agent": "^2.6",
  25. "kyslik/column-sortable": "^6.4",
  26. "laravel-notification-channels/telegram": "^4.0",
  27. "laravel/framework": "^10.8",
  28. "laravel/horizon": "^5.15",
  29. "laravel/sanctum": "^3.2",
  30. "laravel/socialite": "^5.6",
  31. "laravel/tinker": "^2.8",
  32. "mews/captcha": "^3.2",
  33. "mews/purifier": "^3.3",
  34. "phpoffice/phpspreadsheet": "^1.16",
  35. "romanzipp/laravel-turnstile": "^1.1",
  36. "socialiteproviders/telegram": "^4.1",
  37. "spatie/laravel-permission": "^5.10",
  38. "srmklive/paypal": "^3.0",
  39. "stripe/stripe-php": "^10.12",
  40. "symfony/yaml": "^6.2",
  41. "xhat/payjs": "^1.5",
  42. "zbrettonye/geetest": "^1",
  43. "zbrettonye/hcaptcha": "^1",
  44. "zbrettonye/no-captcha": "^1",
  45. "zoujingli/ip2region": "^2.0"
  46. },
  47. "require-dev": {
  48. "barryvdh/laravel-debugbar": "^3.4",
  49. "barryvdh/laravel-ide-helper": "^2.8",
  50. "fakerphp/faker": "^1.9",
  51. "laravel-lang/common": "^3.0",
  52. "laravel/pint": "^1.10",
  53. "laravel/telescope": "^4.14",
  54. "mockery/mockery": "^1.4.4",
  55. "nunomaduro/collision": "^7.0",
  56. "phpunit/phpunit": "^10.1",
  57. "spatie/laravel-ignition": "^2.0"
  58. },
  59. "autoload": {
  60. "psr-4": {
  61. "App\\": "app/",
  62. "Database\\Factories\\": "database/factories/",
  63. "Database\\Seeders\\": "database/seeders/"
  64. },
  65. "files": [
  66. "app/helpers.php"
  67. ]
  68. },
  69. "autoload-dev": {
  70. "psr-4": {
  71. "Tests\\": "tests/"
  72. }
  73. },
  74. "scripts": {
  75. "post-autoload-dump": [
  76. "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
  77. "@php artisan package:discover --ansi"
  78. ],
  79. "post-update-cmd": [
  80. "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
  81. ],
  82. "post-root-package-install": [
  83. "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  84. ],
  85. "post-create-project-cmd": [
  86. "@php artisan key:generate --ansi"
  87. ]
  88. },
  89. "extra": {
  90. "laravel": {
  91. "dont-discover": [
  92. "laravel/telescope"
  93. ]
  94. }
  95. },
  96. "config": {
  97. "platform": {
  98. "ext-pcntl": "8.0",
  99. "ext-posix": "8.0"
  100. },
  101. "optimize-autoloader": true,
  102. "preferred-install": "dist",
  103. "sort-packages": true,
  104. "allow-plugins": {
  105. "pestphp/pest-plugin": true,
  106. "php-http/discovery": true
  107. }
  108. },
  109. "minimum-stability": "stable",
  110. "prefer-stable": true
  111. }