-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
63 lines (63 loc) · 2.12 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "and/oauth",
"description": "Simple and amazing OAuth library with many providers. Just try it out!",
"keywords": ["oauth", "oauth1", "oauth2", "authentication", "authorization", "security", "amazon", "bitbucket", "bitly", "box", "buffer", "dailymotion", "deviantart", "dropbox", "etsy", "eve", "eveonline", "facebook", "fitbit", "flickr", "foursquare", "github", "google", "harvest", "instagram", "jawbone", "linkedin", "mailchimp", "microsoft", "paypal", "pocket", "reddit", "runkeeper", "scoopit", "soundcloud", "spotify", "tumblr", "twitter", "ustream", "vkontakte", "yahoo"],
"license": "MIT",
"authors": [
{
"name": "And",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "David Desberg",
"email": "[email protected]",
"role": "Developer of OAuth"
},
{
"name": "Pieter Hordijk",
"email": "[email protected]",
"role": "Developer of OAuth"
},
{
"name": "Luciano Mammino",
"email": "[email protected]",
"homepage": "http://oryzone.com",
"role": "Developer of UserData package"
}
],
"minimum-stability": "beta",
"require": {
"php": ">=5.4.0",
"ext-reflection": "*",
"ext-spl": "*",
"kriswallsmith/buzz": "~0.13",
"league/url": "~3.2",
"gregwar/image": "~2.0.18"
},
"require-dev": {
"symfony/http-foundation": "~2.1",
"predis/predis": "0.8.*@dev",
"phpunit/phpunit": "~4.6"
},
"suggest": {
"symfony/http-foundation": "Allows using the Symfony Session storage backend.",
"predis/predis": "Allows using the Redis storage backend.",
"ext-openssl": "Allows for usage of secure connections with the stream-based HTTP client."
},
"autoload": {
"psr-4": {
"OAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OAuthTest\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.7-dev"
}
}
}