composer.json 556 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "ixudra/curl",
  3. "description": "Custom PHP Curl library for the Laravel 5 framework - developed by Ixudra",
  4. "version": "6.10.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. }