composer.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "name": "alibabacloud/client",
  3. "homepage": "https://www.alibabacloud.com/",
  4. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  5. "keywords": [
  6. "sdk",
  7. "tool",
  8. "cloud",
  9. "client",
  10. "aliyun",
  11. "library",
  12. "alibaba",
  13. "alibabacloud"
  14. ],
  15. "type": "library",
  16. "license": "Apache-2.0",
  17. "support": {
  18. "source": "https://github.com/aliyun/openapi-sdk-php-client",
  19. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues"
  20. },
  21. "authors": [
  22. {
  23. "name": "Alibaba Cloud SDK",
  24. "email": "sdk-team@alibabacloud.com",
  25. "homepage": "http://www.alibabacloud.com"
  26. }
  27. ],
  28. "require": {
  29. "php": ">=5.5",
  30. "ext-curl": "*",
  31. "ext-json": "*",
  32. "ext-libxml": "*",
  33. "ext-openssl": "*",
  34. "ext-mbstring": "*",
  35. "ext-simplexml": "*",
  36. "ext-xmlwriter": "*",
  37. "guzzlehttp/guzzle": "^6.3|^7.0",
  38. "danielstjules/stringy": "^3.1",
  39. "mtdowling/jmespath.php": "^2.5",
  40. "adbario/php-dot-notation": "^2.2",
  41. "clagiordano/weblibs-configmanager": "^1.0"
  42. },
  43. "require-dev": {
  44. "ext-spl": "*",
  45. "ext-dom": "*",
  46. "ext-pcre": "*",
  47. "psr/cache": "^1.0",
  48. "ext-sockets": "*",
  49. "drupal/coder": "^8.3",
  50. "symfony/dotenv": "^3.4",
  51. "league/climate": "^3.2.4",
  52. "phpunit/phpunit": "^5.7.27|^6.1",
  53. "monolog/monolog": "^1.24",
  54. "composer/composer": "^1.8",
  55. "mikey179/vfsstream": "^1.6",
  56. "symfony/var-dumper": "^3.4"
  57. },
  58. "suggest": {
  59. "ext-sockets": "To use client-side monitoring"
  60. },
  61. "autoload": {
  62. "psr-4": {
  63. "AlibabaCloud\\Client\\": "src"
  64. },
  65. "files": [
  66. "src/Functions.php"
  67. ]
  68. },
  69. "autoload-dev": {
  70. "psr-4": {
  71. "AlibabaCloud\\Client\\Tests\\": "tests/"
  72. }
  73. },
  74. "config": {
  75. "preferred-install": "dist",
  76. "optimize-autoloader": true
  77. },
  78. "minimum-stability": "dev",
  79. "prefer-stable": true,
  80. "scripts-descriptions": {
  81. "cs": "Tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard.",
  82. "cbf": "Automatically correct coding standard violations.",
  83. "fixer": "Fixes code to follow standards.",
  84. "test": "Run all tests.",
  85. "unit": "Run Unit tests.",
  86. "feature": "Run Feature tests.",
  87. "clearCache": "Clear cache like coverage.",
  88. "coverage": "Show Coverage html.",
  89. "endpoints": "Update endpoints from OSS."
  90. },
  91. "scripts": {
  92. "cs": "phpcs --standard=PSR2 -n ./",
  93. "cbf": "phpcbf --standard=PSR2 -n ./",
  94. "fixer": "php-cs-fixer fix ./",
  95. "test": [
  96. "phpunit --colors=always"
  97. ],
  98. "unit": [
  99. "@clearCache",
  100. "phpunit --testsuite=Unit --colors=always"
  101. ],
  102. "feature": [
  103. "@clearCache",
  104. "phpunit --testsuite=Feature --colors=always"
  105. ],
  106. "coverage": "open cache/coverage/index.html",
  107. "clearCache": "rm -rf cache/*",
  108. "endpoints": [
  109. "AlibabaCloud\\Client\\Regions\\LocationService::updateEndpoints",
  110. "@fixer"
  111. ],
  112. "release": [
  113. "AlibabaCloud\\Client\\Release::release"
  114. ]
  115. }
  116. }