-
Thomas Flori authoredVerified211394b7
This project manages its dependencies using Composer.
Learn more
composer.json 609 B
{
"name": "tflori/tal",
"description": "A guzzle/psr-7 wrapper to add additional functionality like sending responses and managing cookies",
"type": "library",
"license": "MIT",
"scripts": {
"code-style": "phpcs --standard=PSR2 src && phpcs --standard=PSR2 --ignore=example tests"
},
"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"]
}
}