-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcomposer.json
46 lines (46 loc) · 1.35 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
43
44
45
46
{
"name": "upwork/php-upwork",
"description": "PHP bindings for Upwork API",
"version": "v1.4.0",
"type": "library",
"keywords": ["upwork", "php", "api"],
"homepage": "http://www.upwork.com",
"time": "2020-09-09",
"license": "Apache-2.0",
"authors": [
{
"name": "Maksym Novozhylov",
"email": "[email protected]",
"homepage": "http://mnov.tel",
"role": "Software Engineer, Platform/Integrity"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/upwork/php-upwork/issues",
"forum": "https://www.upwork.com/community/forum/49",
"source": "https://github.com/upwork/php-upwork/releases",
"wiki": "http://developers.upwork.com"
},
"suggest": {
"ext-oauth": "This extension from PECL provides OAuth consumer and provider bindings. See more under http://www.php.net/oauth",
"apigen/apigen": "dev-master",
"roave/better-reflection": "dev-master"
},
"require": {
"php": ">=5.3.3",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpunit/php-invoker": "*"
},
"autoload": {
"psr-0": {
"Upwork\\API": "src/"
},
"files": [
"src/Upwork/API/constants.php"
]
}
}