add basic functionality
composer.json
0 → 100644
{ | ||
"name": "tflori/tal", | ||
"description": "A guzzle/psr-7 wrapper to add additional functionality like sending responses and managing cookies", | ||
"type": "library", | ||
"license": "MIT", | ||
"require": { | ||
"guzzlehttp/psr7": "^1.4.2" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^7.2.7", | ||
"squizlabs/php_codesniffer": "^3.3.1" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Tal\\": "src" | ||
}, | ||
"files": ["src/functions.php"] | ||
} | ||
} |
src/ServerRequest.php
0 → 100644
src/functions.php
0 → 100644
Please register or sign in to comment