pickles/composer.json
Josh Sherman 11e4fee711 Switching the OAuth2 lib back again
Couldn't handle the fact that the errors were being echoed from the library
and not thrown or at the very least passed back so I could use them.
2014-10-19 10:26:15 -04:00

37 lines
1.1 KiB
JSON

{
"name": "joshtronic/pickles",
"description": "Pickles is a PHP framework for building kick-ass services",
"type": "library",
"keywords": ["framework", "api", "soa", "oauth"],
"homepage": "http://picklesphp.com",
"license": "MIT",
"authors": [
{
"name": "Josh Sherman",
"email": "josh@gravityblvd.com",
"homepage": "http://joshtronic.com"
}
],
"support": {
"issues": "https://github.com/joshtronic/pickles/issues",
"source": "https://github.com/joshtronic/pickles"
},
"minimum-stability" : "dev",
"require-dev": {
"phpunit/phpunit": "dev-master",
"satooshi/php-coveralls": "dev-master"
},
"require": {
"php": ">=5.4",
"league/oauth2-server": "4.0.x-dev"
},
"suggest": {
"mongodb/mongo-php-driver": "Required to use the Mongo storage engine",
"predis/predis": "Required to use the Redis storage engine",
}
"autoload": {
"psr-4": {
"Pickles\\" : "src/"
}
}
}