-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.02 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
{
"name": "clarion-app/gtd-backend",
"description": "Provides operations to implement the Getting Things Done organization system.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ClarionApp\\GettingThingsDone\\": "src/"
}
},
"authors": [
{
"name": "Tim Schwartz",
"email": "tim@metaverse.systems"
}
],
"repositories": [
{
"type": "path",
"url": "../backend"
}
],
"require": {
"clarion-app/eloquent-multichain-bridge": "dev-main",
"clarion-app/backend": "dev-main"
},
"extra": {
"laravel": {
"providers": [
"ClarionApp\\GettingThingsDone\\GettingThingsDoneServiceProvider"
]
},
"clarion": {
"app-name": "@clarion-app/gtd",
"description": "Provides operations to implement the Getting Things Done organization system."
}
},
"minimum-stability": "dev"
}