composer.json 626 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "ixudra/curl",
  3. "description": "Custom PHP Curl library - developer by Ixudra",
  4. "version": "0.1.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.3.0",
  16. "illuminate/support": "4.1.*"
  17. },
  18. "autoload": {
  19. "classmap": [
  20. "src/migrations"
  21. ],
  22. "psr-0": {
  23. "Ixudra\\Curl\\": "src/"
  24. }
  25. },
  26. "minimum-stability": "stable"
  27. }