OAuth/composer.json

42 lines
992 B
JSON
Raw Permalink Normal View History

2012-02-08 19:12:44 +00:00
{
"name": "jacobkiers/oauth",
"description": "Based on Andy Smith's basic PHP library for OAuth 1.0a",
2012-02-08 19:23:47 +00:00
"type": "library",
"keywords": ["oauth"],
"homepage": "https://github.com/jacobkiers/OAuth",
"license": "MIT",
"authors": [
{
"name": "Jacob Kiers",
"email": "jacob@alphacomm.nl",
"role": "developer"
},
{
"name": "Gary Jones",
"email": "gary@garyjones.co.uk",
"role": "developer"
},
{
"name": "Alexandre Eher",
"role": "Composer packager"
},
{
"name": "Andy Smith",
"role": "original author"
}
],
2012-02-12 17:10:02 +00:00
"require": {
"php": ">=5.3.0"
2012-04-03 14:00:41 +00:00
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "3.7.*@stable",
"mockery/mockery": "*"
},
2012-04-03 14:00:41 +00:00
"autoload": {
"psr-0": {
2013-02-08 10:32:26 +00:00
"JacobKiers\\OAuth": "src/"
2012-04-03 14:00:41 +00:00
}
2012-02-08 19:23:47 +00:00
}
2012-02-08 19:12:44 +00:00
}