composer.json 689 B

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