-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.24 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
{
"name": "marbles/craft-teamleader",
"description": "A connection between craft commerce and teamleader to have an easy flow of facturation",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"teamleader"
],
"support": {
"docs": "https://github.com/Marbles/craft-teamleader/blob/master/README.md",
"issues": "https://github.com/Marbles/craft-teamleader/issues"
},
"license": "MIT",
"authors": [
{
"name": "Kjell Knapen",
"homepage": "https://knapen.dev"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"janhenkes/teamleader-php-sdk": "^2.0"
},
"autoload": {
"psr-4": {
"marbles\\teamleader\\": "src/"
}
},
"extra": {
"name": "Teamleader",
"handle": "teamleader",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/Marbles/craft-teamleader/master/CHANGELOG.md",
"components": {
"teamleader": "marbles\\teamleader\\services\\TeamleaderApi"
},
"class": "marbles\\teamleader\\TeamleaderApi"
}
}