composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "alipaysdk/openapi",
  3. "version": "1.0.3",
  4. "description": "支付宝开放平台v3协议文档",
  5. "keywords": [
  6. "openapitools",
  7. "openapi-generator",
  8. "openapi",
  9. "php",
  10. "sdk",
  11. "rest",
  12. "api"
  13. ],
  14. "homepage": "https://openapi-generator.tech",
  15. "license": "unlicense",
  16. "authors": [
  17. {
  18. "name": "OpenAPI-Generator contributors",
  19. "homepage": "https://openapi-generator.tech"
  20. }
  21. ],
  22. "require": {
  23. "php": "^7.4 || ^8.0",
  24. "ext-curl": "*",
  25. "ext-json": "*",
  26. "ext-mbstring": "*",
  27. "ext-openssl":"*",
  28. "ext-bcmath": "*",
  29. "guzzlehttp/guzzle": "^7.3",
  30. "guzzlehttp/psr7": "^1.7 || ^2.0"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^8.0 || ^9.0",
  34. "friendsofphp/php-cs-fixer": "^3.5"
  35. },
  36. "autoload": {
  37. "psr-4": { "Alipay\\OpenAPISDK\\" : "v3/src/" }
  38. },
  39. "autoload-dev": {
  40. "psr-4": { "Alipay\\OpenAPISDK\\Test\\" : "v3/test/" }
  41. }
  42. }