composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "luolongfei/freenom",
  3. "description": "freenom域名自动续期。",
  4. "type": "project",
  5. "require": {
  6. "php": ">=7.3",
  7. "ext-curl": "*",
  8. "ext-openssl": "*",
  9. "guzzlehttp/guzzle": "^7.4.1",
  10. "monolog/monolog": "^1.24",
  11. "bramus/monolog-colored-line-formatter": "~2.0",
  12. "phpmailer/phpmailer": "^6.0",
  13. "vlucas/phpdotenv": "^3.3",
  14. "predis/predis": "^1.1",
  15. "ext-json": "*",
  16. "ext-bcmath": "*",
  17. "ext-pdo": "*",
  18. "kevinlebrun/colors.php": "^1.0",
  19. "ext-mbstring": "*"
  20. },
  21. "license": "MIT",
  22. "authors": [
  23. {
  24. "name": "luolongfei",
  25. "email": "[email protected]",
  26. "homepage": "https://github.com/luolongfei/freenom"
  27. }
  28. ],
  29. "autoload": {
  30. "psr-4": {
  31. "Luolongfei\\Libs\\": "libs",
  32. "Luolongfei\\App\\": "app"
  33. },
  34. "files": [
  35. "app/helpers.php"
  36. ]
  37. },
  38. "config": {
  39. "platform-check": false
  40. }
  41. }