composer.json 835 B

12345678910111213141516171819202122232425262728293031323334353637
  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.1",
  5. "keywords": ["Ixudra", "Laravel", "Curl"],
  6. "homepage": "http://ixudra.be",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Jan Oris",
  11. "email": "[email protected]"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.4.0",
  16. "ext-curl": "*",
  17. "illuminate/support": ">=4.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "Hugh\\Curl\\": "src/"
  22. }
  23. },
  24. "extra": {
  25. "laravel": {
  26. "providers": [
  27. "Hugh\\Curl\\CurlServiceProvider"
  28. ],
  29. "aliases": {
  30. "Curl": "Hugh\\Curl\\Facades\\Curl"
  31. }
  32. }
  33. }
  34. }