forked from FabianBeiner/Todoist-PHP-API-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.38 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "fabian-beiner/todoist-php-api-library",
"type": "library",
"description": "A PHP client library that provides a native interface to the official Todoist REST API.",
"keywords": [
"api",
"api-client",
"client",
"library",
"php",
"sdk",
"sdk-php",
"todoist",
"todoist-api",
"todoist-sdk"
],
"license": "MIT",
"authors": [
{
"email": "fb@fabianbeiner.de",
"homepage": "https://fabianbeiner.de",
"name": "Fabian Beiner",
"role": "Creator, Developer"
},
{
"email": "balazscsaba2006@gmail.com",
"homepage": "https://www.humandirect.eu",
"name": "Balazs Csaba",
"role": "Contributor, Developer"
}
],
"support": {
"docs": "https://github.com/FabianBeiner/Todoist-PHP-API-Library/wiki",
"issues": "https://github.com/FabianBeiner/Todoist-PHP-API-Library/issues",
"source": "https://github.com/FabianBeiner/Todoist-PHP-API-Library/releases"
},
"require": {
"guzzlehttp/guzzle": "~6.5",
"php": ">=7.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"scripts": {
"test": "phpunit"
},
"scripts-descriptions": {
"test": "Run all PHPUnit tests."
},
"autoload": {
"psr-0": {
"FabianBeiner\\Todoist\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FabianBeiner\\Todoist\\Tests\\": "tests/"
}
}
}