composer.json 419 B

1234567891011121314151617181920212223242526
  1. {
  2. "name" : "ares333/php-curl",
  3. "description" : "The best php curl library.",
  4. "require" : {
  5. "php" : ">=5.3.0",
  6. "ext-curl" : "*"
  7. },
  8. "license" : "Apache-2.0",
  9. "keywords" : [
  10. "curl",
  11. "curlmulti",
  12. "aysnc http",
  13. "php curl"
  14. ],
  15. "autoload" : {
  16. "psr-4" : {
  17. "Ares333\\Curl\\" : "src"
  18. }
  19. },
  20. "minimum-stability" : "stable",
  21. "authors" : [{
  22. "name" : "Ares",
  23. "homepage" : "http://phpdr.net"
  24. }
  25. ]
  26. }