-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 872 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
35
{
"name": "dammyammy/social",
"description": "PHP Social Media API Wrappers.",
"keywords": ["Twitter", "api", "oauth", "rest", "social", "facebook"],
"type": "library",
"license": "MIT",
"homepage": "http://dami.ogunmoye.com",
"authors": [
{
"name": "Ogunmoye Damilola",
"email": "dami@ogunmoye.com",
"homepage": "http://dami.ogunmoye.com",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/dammyammy/social",
"issues": "https://github.com/dammyammy/social/issues"
},
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "5.2.0",
"abraham/twitteroauth": "0.5.0",
"vlucas/phpdotenv": "1.1.*@dev",
"facebook/php-sdk-v4": "4.0.*"
},
"autoload": {
"psr-4": {
"Dammyammy\\Social\\": "src"
},
"files": [
"src/helpers.php"
]
}
}