Made package PSR-2 compatible.

Since this is a fork, also renamed the namespaces and containing folder.
This commit is contained in:
Gary Jones
2012-11-17 21:13:44 +00:00
parent 6a15224e34
commit 63b4a0f58d
27 changed files with 1000 additions and 915 deletions

View File

@@ -1,12 +1,34 @@
{
"name": "Eher/OAuth",
"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": {
"Eher\\OAuth": "src"
"GaryJones\\OAuth": "src"
}
}
}