| 12345678910111213141516171819202122232425262728 |
- {
- "name": "michel/requestkit",
- "description": "A lightweight and efficient PHP library for handling, validating, and transforming incoming HTTP requests, supporting both form submissions and JSON API payloads.",
- "type": "library",
- "license": "MIT",
- "authors": [
- {
- "name": "Michel.F"
- }
- ],
- "autoload": {
- "psr-4": {
- "Michel\\RequestKit\\": "src",
- "Test\\Michel\\RequestKit\\": "tests"
- },
- "files": [
- "functions/helpers.php"
- ]
- },
- "require": {
- "php": ">=7.4",
- "ext-json": "*",
- "psr/http-message": "^1.0 || ^2.0"
- },
- "require-dev": {
- "michel/unitester": "^1.0.0"
- }
- }
|