| 1234567891011121314151617181920212223242526272829 |
- {
- "name": "depo/php-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": "F. Michel",
- "homepage": "https://www.depohub.org"
- }
- ],
- "autoload": {
- "psr-4": {
- "Depo\\RequestKit\\": "src",
- "Test\\Depo\\RequestKit\\": "tests"
- },
- "files": [
- "functions/helpers.php"
- ]
- },
- "require": {
- "php": ">=7.4",
- "ext-json": "*",
- "psr/http-message": "^1.0 || ^2.0"
- },
- "require-dev": {
- "depo/unitester": "^1.0.0"
- }
- }
|