composer.json 757 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "cloudflare/sdk",
  3. "description": "PHP binding for v4 of the Cloudflare Client API.",
  4. "type": "library",
  5. "require": {
  6. "guzzlehttp/guzzle": "^7.0.1",
  7. "php": ">=7.2.5",
  8. "psr/http-message": "~1.0",
  9. "ext-json": "*"
  10. },
  11. "require-dev": {
  12. "phpunit/phpunit": "^5.7",
  13. "phpmd/phpmd" : "@stable",
  14. "friendsofphp/php-cs-fixer": "^2.6"
  15. },
  16. "license": "BSD-3-Clause",
  17. "authors": [
  18. {
  19. "name": "Junade Ali",
  20. "email": "junade@cloudflare.com"
  21. }
  22. ],
  23. "autoload": {
  24. "psr-4": {
  25. "Cloudflare\\API\\": "src/"
  26. }
  27. },
  28. "autoload-dev": {
  29. "classmap": [
  30. "tests/"
  31. ]
  32. },
  33. "config": {
  34. "preferred-install": "dist",
  35. "sort-packages": true,
  36. "optimize-autoloader": true
  37. }
  38. }