composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "kriswallsmith/buzz",
  3. "description": "Lightweight HTTP client",
  4. "keywords": ["http client", "curl"],
  5. "homepage": "https://github.com/kriswallsmith/Buzz",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Kris Wallsmith",
  11. "email": "kris.wallsmith@gmail.com",
  12. "homepage": "http://kriswallsmith.net/"
  13. }
  14. ],
  15. "require": {
  16. "php": "^5.4 || ^7.0",
  17. "guzzlehttp/psr7": "^1.4"
  18. },
  19. "require-dev": {
  20. "symfony/phpunit-bridge": "^3.4 || ^4.0",
  21. "php-http/client-integration-tests": "^0.6.2"
  22. },
  23. "suggest": {
  24. "ext-curl": "*"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Buzz\\": "lib/Buzz"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Buzz\\Test\\": "test/Buzz/Test"
  34. }
  35. },
  36. "scripts": {
  37. "test": "vendor/bin/simple-phpunit",
  38. "test-ci": "vendor/bin/simple-phpunit --coverage-text --coverage-clover=build/coverage.xml"
  39. }
  40. }