composer.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "alibabacloud/tea",
  3. "homepage": "https://www.alibabacloud.com/",
  4. "description": "Client of Tea for PHP",
  5. "keywords": [
  6. "tea",
  7. "client",
  8. "alibabacloud",
  9. "cloud"
  10. ],
  11. "type": "library",
  12. "license": "Apache-2.0",
  13. "support": {
  14. "source": "https://github.com/aliyun/tea-php",
  15. "issues": "https://github.com/aliyun/tea-php/issues"
  16. },
  17. "authors": [
  18. {
  19. "name": "Alibaba Cloud SDK",
  20. "email": "sdk-team@alibabacloud.com",
  21. "homepage": "http://www.alibabacloud.com"
  22. }
  23. ],
  24. "require": {
  25. "php": ">=5.5",
  26. "ext-curl": "*",
  27. "ext-json": "*",
  28. "ext-libxml": "*",
  29. "ext-mbstring": "*",
  30. "ext-openssl": "*",
  31. "ext-simplexml": "*",
  32. "ext-xmlwriter": "*",
  33. "guzzlehttp/guzzle": "^6.3|^7.0",
  34. "adbario/php-dot-notation": "^2.2"
  35. },
  36. "require-dev": {
  37. "symfony/dotenv": "^3.4",
  38. "phpunit/phpunit": "*",
  39. "symfony/var-dumper": "^3.4"
  40. },
  41. "suggest": {
  42. "ext-sockets": "To use client-side monitoring"
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "AlibabaCloud\\Tea\\": "src"
  47. }
  48. },
  49. "autoload-dev": {
  50. "psr-4": {
  51. "AlibabaCloud\\Tea\\Tests\\": "tests"
  52. }
  53. },
  54. "config": {
  55. "sort-packages": true,
  56. "preferred-install": "dist",
  57. "optimize-autoloader": true
  58. },
  59. "prefer-stable": true,
  60. "minimum-stability": "dev",
  61. "scripts": {
  62. "cs": "phpcs --standard=PSR2 -n ./",
  63. "cbf": "phpcbf --standard=PSR2 -n ./",
  64. "fixer": "php-cs-fixer fix ./",
  65. "test": [
  66. "@clearCache",
  67. "phpunit --colors=always"
  68. ],
  69. "unit": [
  70. "@clearCache",
  71. "phpunit --testsuite=Unit --colors=always"
  72. ],
  73. "feature": [
  74. "@clearCache",
  75. "phpunit --testsuite=Feature --colors=always"
  76. ],
  77. "clearCache": "rm -rf cache/*",
  78. "coverage": "open cache/coverage/index.html"
  79. }
  80. }