First public commit
This commit is contained in:
2019-12-20 11:00:00 +03:00
commit a3aaac1d0e
7 changed files with 384 additions and 0 deletions

41
composer.json Executable file
View File

@@ -0,0 +1,41 @@
{
"name": "1sept/oauth2-1sept",
"description": "September First OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
"license": "MIT",
"authors": [
{
"name": "Alexander Vasilyev",
"email": "a.vasilyev@1sept.ru"
}
],
"keywords": [
"oauth",
"oauth2",
"client",
"authorization",
"authorisation",
"1sept"
],
"require": {
"php": "^5.6|^7.0",
"league/oauth2-client": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Sept\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sept\\OAuth2\\Client\\Test\\": "test/src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}