composer.json 947 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "hugh/curl",
  3. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra - redeveloped from Hugh",
  4. "version": "6.22.4",
  5. "keywords": ["Hugh", "Laravel", "Curl"],
  6. "homepage": "https://git.hugh2113.com/hugh",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Jan Oris",
  11. "email": "[email protected]"
  12. },
  13. {
  14. "name": "Hugh Harlequin",
  15. "email": "[email protected]"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.4.0",
  20. "ext-curl": "*",
  21. "illuminate/support": ">=4.0"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Hugh\\Curl\\": "src/"
  26. }
  27. },
  28. "extra": {
  29. "laravel": {
  30. "providers": [
  31. "Hugh\\Curl\\CurlServiceProvider"
  32. ],
  33. "aliases": {
  34. "Curl": "Hugh\\Curl\\Facades\\Curl"
  35. }
  36. }
  37. }
  38. }