-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
44 lines (44 loc) · 1.15 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": "adigital/zendesk",
"description": "Creates a new support ticket in Zendesk using the JSON API",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"zendesk"
],
"support": {
"docs": "https://github.com/a-digital/zendesk/blob/master/README.md",
"issues": "https://github.com/a-digital/zendesk/issues"
},
"license": "MIT",
"authors": [
{
"name": "Matt Shearing",
"homepage": "https://adigital.agency"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"adigital\\zendesk\\": "src/"
}
},
"extra": {
"name": "Zendesk",
"handle": "zendesk",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://github.com/a-digital/zendesk/blob/master/CHANGELOG.md",
"components": {
"zendeskService": "adigital\\zendesk\\services\\ZendeskService"
},
"class": "adigital\\zendesk\\Zendesk"
}
}