OAuth/composer.json

35 lines
767 B
JSON

{
"name": "garyjones/oauth",
"description": "Based on Andy Smith's basic PHP library for OAuth 1.0a",
"type": "library",
"keywords": ["oauth"],
"homepage": "https://github.com/GaryJones/OAuth",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Gary Jones",
"email": "gary@garyjones.co.uk",
"role": "developer"
},
{
"name": "Alexandre Eher",
"role": "Composer packager"
},
{
"name": "Andy Smith",
"role": "original author"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-0": {
"GaryJones\\OAuth": "src"
}
}
}