composer.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "alibabacloud/darabonba",
  3. "homepage": "https://www.alibabacloud.com/",
  4. "description": "Client of Darabonba 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. "adbario/php-dot-notation": "^2.4",
  34. "alibabacloud/tea": "^3.2",
  35. "guzzlehttp/guzzle": "^6.3|^7.0",
  36. "psr/http-message": "^0.11.0|^1.0"
  37. },
  38. "require-dev": {
  39. "symfony/dotenv": "^3.4",
  40. "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3",
  41. "symfony/var-dumper": "^3.4"
  42. },
  43. "suggest": {
  44. "ext-sockets": "To use client-side monitoring"
  45. },
  46. "autoload": {
  47. "psr-4": {
  48. "AlibabaCloud\\Dara\\": "src"
  49. }
  50. },
  51. "autoload-dev": {
  52. "psr-4": {
  53. "AlibabaCloud\\Dara\\Tests\\": "tests"
  54. }
  55. },
  56. "config": {
  57. "sort-packages": true,
  58. "preferred-install": "dist",
  59. "optimize-autoloader": true
  60. },
  61. "prefer-stable": true,
  62. "minimum-stability": "dev",
  63. "scripts": {
  64. "cs": "phpcs --standard=PSR2 -n ./",
  65. "cbf": "phpcbf --standard=PSR2 -n ./",
  66. "fixer": "php-cs-fixer fix ./",
  67. "unit": [
  68. "@clearCache",
  69. "XDEBUG_MODE=coverage phpunit --testsuite=Unit --colors=always --coverage-xml ./coverage/xml --coverage-html ./coverage/html --coverage-clover ./coverage/coverage.clover"
  70. ],
  71. "feature": [
  72. "@clearCache",
  73. "phpunit --testsuite=Feature --colors=always"
  74. ],
  75. "clearCache": "rm -rf cache/*",
  76. "coverage": "open cache/coverage/index.html"
  77. }
  78. }