77 lines
1.9 KiB
JSON
Executable File
77 lines
1.9 KiB
JSON
Executable File
{
|
|
"name": "slim/http",
|
|
"type": "library",
|
|
"description": "Slim PSR-7 Object Decorators",
|
|
"keywords": [
|
|
"psr7",
|
|
"psr-7",
|
|
"http"
|
|
],
|
|
"homepage": "http://slimframework.com",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Josh Lockhart",
|
|
"email": "hello@joshlockhart.com",
|
|
"homepage": "http://joshlockhart.com"
|
|
},
|
|
{
|
|
"name": "Andrew Smith",
|
|
"email": "a.smith@silentworks.co.uk",
|
|
"homepage": "http://silentworks.co.uk"
|
|
},
|
|
{
|
|
"name": "Rob Allen",
|
|
"email": "rob@akrabat.com",
|
|
"homepage": "http://akrabat.com"
|
|
},
|
|
{
|
|
"name": "Pierre Berube",
|
|
"email": "pierre@lgse.com",
|
|
"homepage": "http://www.lgse.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.0",
|
|
"ext-SimpleXML": "*",
|
|
"ext-fileinfo": "*",
|
|
"ext-json": "*",
|
|
"ext-libxml": "*",
|
|
"psr/http-factory": "^1.0",
|
|
"psr/http-message": "^1.1 || ^2.0"
|
|
},
|
|
"require-dev": {
|
|
"adriansuter/php-autoload-override": "^1.4",
|
|
"laminas/laminas-diactoros": "^3.1.0",
|
|
"nyholm/psr7": "^1.8.1",
|
|
"php-http/psr7-integration-tests": "^1.3.0",
|
|
"phpstan/phpstan": "^1.10",
|
|
"phpunit/phpunit": "^9.6",
|
|
"doctrine/instantiator": "^1.3.1",
|
|
"squizlabs/php_codesniffer": "^3.9"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Slim\\Http\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Slim\\Tests\\Http\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"@phpunit",
|
|
"@phpcs",
|
|
"@phpstan"
|
|
],
|
|
"phpunit": "phpunit",
|
|
"phpcs": "phpcs",
|
|
"phpstan": "phpstan --memory-limit=-1"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|