initial commit

This commit is contained in:
Jack Wall
2014-12-07 23:00:39 +00:00
commit 189ffea4dd
9 changed files with 305 additions and 0 deletions

33
composer.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "j4k/oauth2-vkontakte",
"description": "Vkontakte provider for league/oauth2-client",
"keywords": [
"league",
"package"
],
"license": "MIT",
"authors": [
{
"name": "Jack Wall",
"email": "jw@jack.gd"
}
],
"require": {
"php" : "~5.4",
"league/oauth2-client": "~0.5"
},
"require-dev": {
"phpunit/phpunit" : "~4.3",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"J4k\\OAuth2\\Client\\Provider\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"J4k\\OAuth2\\Client\\Test\\Provider\\": "tests/"
}
}
}