forked from kenichiii/GitHubAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 723 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 723 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
32
33
34
35
{
"name": "flexyproject/githubapi",
"type": "library",
"description": "PHP7 Client & WebHook wrapper for GitHub API v3",
"homepage": "https://github.com/FlexyProject/GitHubAPI",
"keywords": [
"github",
"api"
],
"license": "LGPL-3.0+",
"authors": [
{
"name": "David Sanchez",
"email": "david38sanchez@gmail.com"
}
],
"autoload": {
"psr-4": {
"FlexyProject\\GitHub\\": "lib/GitHub/"
}
},
"autoload-dev": {
"psr-4": {
"FlexyProject\\GitHub\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7",
"symfony/http-foundation": "^3.0",
"flexyproject/curl": "^1.1.3"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
}
}