composer.json 3.1 KB

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