composer.json 516 B

12345678910111213141516171819202122
  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. "yiisoft/yii2": "*",
  15. "ext-curl": "*"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "linslin\\yii2\\curl\\": ""
  20. }
  21. }
  22. }