composer.json 980 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "php-http/httplug",
  3. "description": "HTTPlug, the HTTP client abstraction for PHP",
  4. "license": "MIT",
  5. "keywords": ["http", "client"],
  6. "homepage": "http://httplug.io",
  7. "authors": [
  8. {
  9. "name": "Eric GELOEN",
  10. "email": "geloen.eric@gmail.com"
  11. },
  12. {
  13. "name": "Márk Sági-Kazár",
  14. "email": "mark.sagikazar@gmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.4",
  19. "psr/http-message": "^1.0",
  20. "php-http/promise": "^1.0"
  21. },
  22. "require-dev": {
  23. "phpspec/phpspec": "^2.4",
  24. "henrikbjorn/phpspec-code-coverage" : "^1.0"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Http\\Client\\": "src/"
  29. }
  30. },
  31. "scripts": {
  32. "test": "vendor/bin/phpspec run",
  33. "test-ci": "vendor/bin/phpspec run -c phpspec.ci.yml"
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "1.1-dev"
  38. }
  39. }
  40. }