-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1001 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "poirot/client-oauth2"
, "description": "Provides a simple and clean Abstraction for Integration with OAuth 2.0 Server Providers."
, "type" : "library"
, "authors": [
{
"name": "Payam Naderi"
, "email": "naderi.payam@gmail.com"
, "role": "Developer"
}
]
, "require": {
"poirot/api-client": "dev-devel"
, "poirot/std": "dev-devel"
, "poirot/ioc": "dev-devel"
, "psr/http-message": "1.0"
}
, "suggest": {
"poirot/psr7-http": "PSR-7 HTTP Implementation."
, "poirot/mod-authorization": "Integrated Authentication Mechanism Based On Tokens."
}
, "autoload" : {
"psr-4": {
"Poirot\\OAuth2Client\\": "src/"
, "Module\\OAuth2Client\\": "mod/"
}
, "files": [
"src/_functions.php"
]
}
,"repositories": [
{ "type": "git" ,"url": "https://github.com/phPoirot/Client-OAuth2.git" }
]
}