composer.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "anankke/sspanel-uim",
  3. "description": "Multi-functional proxy service management system supporting Shadowsocks(2022), V2Ray, Trojan and TUIC protocols",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Anankke",
  8. "homepage": "https://github.com/Anankke"
  9. }
  10. ],
  11. "require": {
  12. "php": "^8.2",
  13. "ext-bcmath": "*",
  14. "ext-curl": "*",
  15. "ext-fileinfo": "*",
  16. "ext-json": "*",
  17. "ext-mbstring": "*",
  18. "ext-openssl": "*",
  19. "ext-pdo": "*",
  20. "ext-posix": "*",
  21. "ext-redis": "*",
  22. "ext-xml": "*",
  23. "ext-yaml": "*",
  24. "ext-zip": "*",
  25. "alibabacloud/dm-20170622": "^1",
  26. "alipaysdk/openapi": "dev-master",
  27. "aws/aws-sdk-php": "^3",
  28. "danielsreichenbach/geoip2-update": "^2",
  29. "geoip2/geoip2": "^3",
  30. "guzzlehttp/guzzle": "^7",
  31. "guzzlehttp/psr7": "^2",
  32. "illuminate/database": "^11",
  33. "illuminate/pagination": "^11",
  34. "irazasyed/telegram-bot-sdk": "^3",
  35. "lcobucci/jwt": "^5",
  36. "league/html-to-markdown": "^5",
  37. "mailchimp/transactional": "^1",
  38. "mailgun/mailgun-php": "^4",
  39. "monolog/monolog": "^3",
  40. "nikolaposa/rate-limit": "^3",
  41. "openai-php/client": "^0",
  42. "phpmailer/phpmailer": "^6",
  43. "postal/postal": "^2",
  44. "ramsey/uuid": "^4",
  45. "resend/resend-php": "^0.18.1",
  46. "sendgrid/sendgrid": "^8",
  47. "sentry/sdk": "^4",
  48. "slim/http": "^1",
  49. "slim/slim": "^4",
  50. "smarty/smarty": "^5",
  51. "srmklive/paypal": "^3",
  52. "stripe/stripe-php": "^17",
  53. "symfony/http-client": "^7",
  54. "symfony/translation": "^7",
  55. "twig/twig": "^3",
  56. "vectorface/googleauthenticator": "^3",
  57. "voku/anti-xss": "^4",
  58. "web-auth/webauthn-framework": "^5.2"
  59. },
  60. "autoload": {
  61. "psr-4": {
  62. "App\\": "src/"
  63. }
  64. },
  65. "autoload-dev": {
  66. "psr-4": {
  67. "Tests\\": "tests/"
  68. }
  69. },
  70. "config": {
  71. "sort-packages": true,
  72. "optimize-autoloader": true,
  73. "allow-plugins": {
  74. "dealerdirect/phpcodesniffer-composer-installer": true,
  75. "php-http/discovery": true,
  76. "pestphp/pest-plugin": true
  77. }
  78. },
  79. "require-dev": {
  80. "dg/bypass-finals": "^1",
  81. "nunomaduro/phpinsights": "*",
  82. "pestphp/pest": "^3.0",
  83. "phpunit/phpunit": "^11.5"
  84. },
  85. "scripts": {
  86. "update-dev-windows": [
  87. "composer update --ignore-platform-req=ext-posix"
  88. ],
  89. "install-dev-windows": [
  90. "composer install --ignore-platform-req=ext-posix"
  91. ]
  92. },
  93. "type": "project"
  94. }