wellrested/composer.json

33 lines
763 B
JSON

{
"name": "pjdietz/wellrested",
"description": "Simple PHP Library for RESTful APIs",
"keywords": ["rest", "restful", "api", "curl", "http"],
"homepage": "https://github.com/pjdietz/wellrested",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "PJ Dietz",
"email": "pj@pjdietz.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/pjdietz/http-message"
}
],
"require": {
"php": ">=5.4.0",
"psr/http-message": "dev-sync as dev-master"
},
"require-dev": {
"phpunit/phpunit": "~4.6"
},
"autoload": {
"psr-4": {
"WellRESTed\\" : "src/"
}
}
}