-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
36 lines (36 loc) · 866 Bytes
/
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
{
"name": "johansatge/workflowy-php",
"description": "An unofficial WorkFlowy API",
"version": "0.2.3",
"minimum-stability": "stable",
"type": "library",
"keywords": [
"workflowy",
"php",
"api"
],
"homepage": "https://github.com/johansatge/workflowy-php",
"license": "MIT",
"authors": [
{
"name": "Johan Satgé",
"homepage": "http://johansatge.com"
}
],
"support": {
"issues": "https://github.com/johansatge/workflowy-php/issues",
"source": "https://github.com/johansatge/workflowy-php"
},
"require": {},
"require-dev": {},
"autoload": {
"psr-4": {
"WorkFlowyPHP\\": "src/"
},
"psr-0": {
"WorkFlowyPHP": "src/"
},
"classmap": [],
"files": []
}
}