composer.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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": "^4.8.35|^5.4.3",
  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. },
  73. "minimum-stability": "dev",
  74. "prefer-stable": true,
  75. "scripts-descriptions": {
  76. "cs": "Tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard.",
  77. "cbf": "Automatically correct coding standard violations.",
  78. "fixer": "Fixes code to follow standards.",
  79. "test": "Run all tests.",
  80. "unit": "Run Unit tests.",
  81. "feature": "Run Feature tests.",
  82. "clearCache": "Clear cache like coverage.",
  83. "coverage": "Show Coverage html.",
  84. "endpoints": "Update endpoints from OSS."
  85. },
  86. "scripts": {
  87. "cs": "phpcs --standard=PSR2 -n ./",
  88. "cbf": "phpcbf --standard=PSR2 -n ./",
  89. "fixer": "php-cs-fixer fix ./",
  90. "test": [
  91. "phpunit --colors=always"
  92. ],
  93. "unit": [
  94. "@clearCache",
  95. "phpunit --testsuite=Unit --colors=always"
  96. ],
  97. "feature": [
  98. "@clearCache",
  99. "phpunit --testsuite=Feature --colors=always"
  100. ],
  101. "coverage": "open cache/coverage/index.html",
  102. "clearCache": "rm -rf cache/*"
  103. }
  104. }