composer.json 796 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "ixudra/curl",
  3. "description": "Custom PHP Curl library for the Laravel 5 framework - developed by Ixudra",
  4. "version": "6.15.0",
  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. "illuminate/support": ">=4.0"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "Ixudra\\Curl\\": "src/"
  21. }
  22. },
  23. "extra": {
  24. "laravel": {
  25. "providers": [
  26. "Ixudra\\Curl\\CurlServiceProvider"
  27. ],
  28. "aliases": {
  29. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  30. }
  31. }
  32. }
  33. }