2
0

composer.json 647 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "michel/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": "Michel.F"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "Michel\\RequestKit\\": "src",
  14. "Test\\Michel\\RequestKit\\": "tests"
  15. },
  16. "files": [
  17. "functions/helpers.php"
  18. ]
  19. },
  20. "require": {
  21. "php": ">=7.4",
  22. "ext-json": "*",
  23. "psr/http-message": "^1.0 || ^2.0"
  24. },
  25. "require-dev": {
  26. "michel/unitester": "^1.0.0"
  27. }
  28. }