composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "php-http/multipart-stream-builder",
  3. "description": "A builder class that help you create a multipart stream",
  4. "license": "MIT",
  5. "keywords": ["http", "factory", "message", "stream", "multipart stream"],
  6. "homepage": "http://php-http.org",
  7. "authors": [
  8. {
  9. "name": "Tobias Nyholm",
  10. "email": "tobias.nyholm@gmail.com"
  11. }
  12. ],
  13. "require": {
  14. "php": "^7.1 || ^8.0",
  15. "php-http/discovery": "^1.15",
  16. "psr/http-factory-implementation": "^1.0"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3",
  20. "php-http/message": "^1.5",
  21. "php-http/message-factory": "^1.0.2",
  22. "nyholm/psr7": "^1.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Http\\Message\\MultipartStream\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "tests\\Http\\Message\\MultipartStream\\": "tests/"
  32. }
  33. },
  34. "scripts": {
  35. "test": "vendor/bin/phpunit",
  36. "test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
  37. },
  38. "config": {
  39. "allow-plugins": {
  40. "php-http/discovery": false
  41. }
  42. }
  43. }