composer.json 784 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "phpdevcommunity/php-requestkit",
  3. "description": "A lightweight and efficient PHP library for handling, validating, and transforming incoming HTTP requests, supporting both form submissions and JSON API payloads.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "F. Michel",
  9. "homepage": "https://www.phpdevcommunity.com"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "PhpDevCommunity\\RequestKit\\": "src",
  15. "Test\\PhpDevCommunity\\RequestKit\\": "tests"
  16. },
  17. "files": [
  18. "functions/helpers.php"
  19. ]
  20. },
  21. "require": {
  22. "php": ">=7.4",
  23. "ext-json": "*",
  24. "phpdevcommunity/php-validator": "^1.1",
  25. "psr/http-message": "^2.0"
  26. },
  27. "require-dev": {
  28. "phpdevcommunity/unitester": "^0.1.0@alpha"
  29. }
  30. }