forked from abraham/twitteroauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 873 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 873 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
{
"name": "abraham/twitteroauth",
"type": "library",
"description": "The first PHP Library to support OAuth 1.0A for Twitter's REST API.",
"keywords": ["twitter", "api", "oauth", "rest", "social"],
"license": "MIT",
"homepage": "https://github.com/abraham/twitteroauth",
"authors": [
{
"name": "Abraham Williams",
"email": "abraham@abrah.am",
"homepage": "https://abrah.am",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/abraham/twitteroauth",
"issues": "https://github.com/abraham/twitteroauth/issues"
},
"require": {
"php": ">=5.4.0",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "4.4.*"
},
"autoload": {
"psr-4": { "Abraham\\TwitterOAuth\\": "src" }
}
}