composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "alibabacloud/tea-oss-utils",
  3. "description": "Alibaba Cloud Tea OSS Utils Library for PHP",
  4. "type": "library",
  5. "license": "Apache-2.0",
  6. "authors": [
  7. {
  8. "name": "Alibaba Cloud SDK",
  9. "email": "sdk-team@alibabacloud.com"
  10. }
  11. ],
  12. "require": {
  13. "php": ">5.5",
  14. "alibabacloud/tea": "^3.0",
  15. "guzzlehttp/psr7": "^1.0"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "^4.8.35|^5.4.3|^9.4"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "AlibabaCloud\\Tea\\OSSUtils\\": "src"
  23. }
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "AlibabaCloud\\Tea\\OSSUtils\\Tests\\": "tests"
  28. }
  29. },
  30. "scripts": {
  31. "fixer": "php-cs-fixer fix ./",
  32. "test": [
  33. "@clearCache",
  34. "./vendor/bin/phpunit --colors=always"
  35. ],
  36. "clearCache": "rm -rf cache/*"
  37. },
  38. "config": {
  39. "sort-packages": true,
  40. "preferred-install": "dist",
  41. "optimize-autoloader": true
  42. },
  43. "prefer-stable": true,
  44. "minimum-stability": "dev"
  45. }