composer.json 852 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "alibabacloud/endpoint-util",
  3. "description": "Alibaba Cloud Endpoint 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. },
  15. "require-dev": {
  16. "phpunit/phpunit": "^4.8.35|^5.4.3"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "AlibabaCloud\\Endpoint\\": "src"
  21. }
  22. },
  23. "autoload-dev": {
  24. "psr-4": {
  25. "AlibabaCloud\\Endpoint\\Tests\\": "tests"
  26. }
  27. },
  28. "scripts": {
  29. "fixer": "php-cs-fixer fix ./",
  30. "test": [
  31. "@clearCache",
  32. "./vendor/bin/phpunit --colors=always"
  33. ],
  34. "clearCache": "rm -rf cache/*"
  35. },
  36. "config": {
  37. "sort-packages": true,
  38. "preferred-install": "dist",
  39. "optimize-autoloader": true
  40. },
  41. "prefer-stable": true
  42. }