composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "ucloud/ucloud-sdk-php",
  3. "type": "library",
  4. "description": "UCloud",
  5. "keywords": ["php", "ucloud"],
  6. "homepage": "https://github.com/ucloud/ucloud-sdk-php",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "ucloud",
  11. "email": "yufei.li@ucloud.cn"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.6",
  16. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  17. "psr/log": "^1.1"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "^9.0",
  21. "squizlabs/php_codesniffer": "^3.0",
  22. "phpcompatibility/php-compatibility": "^9.0"
  23. },
  24. "prefer-stable" : true,
  25. "autoload": {
  26. "psr-4" : {
  27. "UCloud\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": { "UCloud\\Tests\\": "tests/" }
  32. },
  33. "config": {
  34. "preferred-install": "dist",
  35. "sort-packages": true
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.0.x-dev"
  40. }
  41. },
  42. "scripts": {
  43. "test": "vendor/bin/phpunit"
  44. }
  45. }