-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 856 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 856 Bytes
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
{
"name": "pingpong/facebook",
"description": "Facebook OAuth v4 for Laravel Framework",
"keywords": ["oauth", "laravel", "facebook", "facebook-v4", "api", "guzzle"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Pingpong Labs",
"email": "pingpong.labs@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": ">=5.0.*",
"illuminate/config": ">=5.0.*",
"illuminate/routing": ">=5.0.*",
"illuminate/session": ">=5.0.*",
"guzzlehttp/guzzle": "~5.2",
"facebook/php-sdk-v4" : "~4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-0": {
"Pingpong\\Facebook": "src/"
}
},
"minimum-stability": "stable"
}