-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
42 lines (42 loc) · 1.23 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
{
"name": "upwork/php-upwork-oauth2",
"description": "PHP bindings for Upwork API (OAuth2)",
"version": "v2.5.0",
"type": "library",
"keywords": ["upwork", "php", "api", "oauth2"],
"homepage": "http://www.upwork.com",
"time": "2024-11-26",
"license": "Apache-2.0",
"authors": [
{
"name": "Maksym Novozhylov",
"email": "[email protected]",
"homepage": "https://github.com/mnovozhylov",
"role": "Product Architect, Platform/Integrity"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/upwork/php-upwork-oauth2/issues",
"forum": "https://community.upwork.com/t5/API-Questions-Answers/bd-p/api_support",
"source": "https://github.com/upwork/php-upwork-oauth2/releases",
"wiki": "http://developers.upwork.com"
},
"require": {
"php": ">=5.6.0",
"ext-json": "*",
"league/oauth2-client": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpunit/php-invoker": "*"
},
"autoload": {
"psr-0": {
"Upwork\\API": "src/"
},
"files": [
"src/Upwork/API/constants.php"
]
}
}