39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "wellrested/wellrested",
|
|
"description": "Simple PHP Library for RESTful APIs",
|
|
"keywords": ["rest", "restful", "api", "http", "psr7", "psr-7", "psr15", "psr-15"],
|
|
"homepage": "https://www.wellrested.org",
|
|
"license": "MIT",
|
|
"type": "library",
|
|
"authors": [
|
|
{
|
|
"name": "PJ Dietz",
|
|
"email": "pjdietz@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"psr/http-message": "~1.0",
|
|
"psr/http-server-handler": "~1.0",
|
|
"psr/http-server-middleware": "~1.0"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^2",
|
|
"phpspec/prophecy-phpunit": "^2.0",
|
|
"phpunit/phpunit": "^9",
|
|
"vimeo/psalm": "^3.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"WellRESTed\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"WellRESTed\\": "test/tests/unit/",
|
|
"WellRESTed\\Test\\": "test/src/",
|
|
"WellRESTed\\Test\\Integration\\": "test/tests/integration/"
|
|
}
|
|
}
|
|
}
|