composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "linslin/yii2-curl",
  3. "description": "Easy and nice cURL extension with RESTful support for Yii2",
  4. "type": "yii2-extension",
  5. "keywords": ["yii2","extension"," curl", "RESTful"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Nils Gajsek",
  10. "email": "info@linslin.org"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=7.2.0 <9.0",
  15. "ext-json": "*",
  16. "ext-curl": "*",
  17. "yiisoft/yii2": "^2.0.0"
  18. },
  19. "require-dev": {
  20. "guzzlehttp/guzzle": ">=4.1.4 <7.0",
  21. "mcustiel/phiremock": "^2.1",
  22. "mcustiel/phiremock-codeception-extension": "^2.1",
  23. "mcustiel/phiremock-codeception-module": "^1.1.2",
  24. "codeception/module-asserts": "^1.3"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "linslin\\yii2\\curl\\": ""
  29. }
  30. },
  31. "archive": {
  32. "exclude": [
  33. "/tests"
  34. ]
  35. },
  36. "repositories": [
  37. {
  38. "type": "composer",
  39. "url": "https://asset-packagist.org"
  40. }
  41. ]
  42. }