1{ 2 "name": "lusitanian/oauth", 3 "description": "PHP 5.3+ oAuth 1/2 Library", 4 "keywords": ["oauth", "authentication", "authorization", "security"], 5 "license": "MIT", 6 "authors": [ 7 { 8 "name": "David Desberg", 9 "email": "david@daviddesberg.com" 10 }, 11 { 12 "name": "Pieter Hordijk", 13 "email": "info@pieterhordijk.com" 14 } 15 ], 16 "require": { 17 "php": ">=5.3.0" 18 }, 19 "require-dev": { 20 "symfony/http-foundation": "~2.1", 21 "predis/predis": "0.8.*@dev", 22 "phpunit/phpunit": "3.7.*" 23 }, 24 "suggest": { 25 "symfony/http-foundation": "Allows using the Symfony Session storage backend.", 26 "predis/predis": "Allows using the Redis storage backend.", 27 "ext-openssl": "Allows for usage of secure connections with the stream-based HTTP client." 28 }, 29 "autoload": { 30 "psr-0": { 31 "OAuth": "src", 32 "OAuth\\Unit": "tests" 33 } 34 }, 35 "extra": { 36 "branch-alias": { 37 "dev-master": "0.1-dev" 38 } 39 } 40} 41