composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "slim/psr7",
  3. "type": "library",
  4. "description": "Strict PSR-7 implementation",
  5. "keywords": ["psr7","psr-7","http"],
  6. "homepage": "https://www.slimframework.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Josh Lockhart",
  11. "email": "hello@joshlockhart.com",
  12. "homepage": "http://joshlockhart.com"
  13. },
  14. {
  15. "name": "Andrew Smith",
  16. "email": "a.smith@silentworks.co.uk",
  17. "homepage": "http://silentworks.co.uk"
  18. },
  19. {
  20. "name": "Rob Allen",
  21. "email": "rob@akrabat.com",
  22. "homepage": "http://akrabat.com"
  23. },
  24. {
  25. "name": "Pierre Berube",
  26. "email": "pierre@lgse.com",
  27. "homepage": "http://www.lgse.com"
  28. }
  29. ],
  30. "require": {
  31. "php": "^7.2",
  32. "fig/http-message-util": "^1.1.2",
  33. "psr/http-factory": "^1.0",
  34. "psr/http-message": "^1.0",
  35. "ralouphie/getallheaders": "^3"
  36. },
  37. "require-dev": {
  38. "ext-json": "*",
  39. "adriansuter/php-autoload-override": "^1.0",
  40. "http-interop/http-factory-tests": "^0.6.0",
  41. "php-http/psr7-integration-tests": "dev-master",
  42. "phpstan/phpstan": "^0.12",
  43. "phpunit/phpunit": "^8.5",
  44. "squizlabs/php_codesniffer": "^3.5"
  45. },
  46. "provide": {
  47. "psr/http-message-implementation": "1.0"
  48. },
  49. "autoload": {
  50. "psr-4": {
  51. "Slim\\Psr7\\": "src"
  52. }
  53. },
  54. "autoload-dev": {
  55. "psr-4": {
  56. "Slim\\Tests\\Psr7\\": "tests"
  57. }
  58. },
  59. "scripts": {
  60. "test": [
  61. "@phpunit",
  62. "@phpcs",
  63. "@phpstan"
  64. ],
  65. "phpunit": "phpunit",
  66. "phpcs": "phpcs",
  67. "phpstan": "phpstan analyse src --memory-limit=-1"
  68. },
  69. "config": {
  70. "sort-packages": true
  71. }
  72. }