forked from workingconcept/trigger-craft-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.05 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
{
"name": "workingconcept/craft-trigger",
"description": "Utility for triggering deployments when they're needed.",
"type": "craft-plugin",
"version": "0.3.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft3",
"deployments",
"utility"
],
"support": {
"issues": "https://github.com/workingconcept/trigger-craft-plugin/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Working Concept",
"homepage": "https://workingconcept.com"
}
],
"require": {
"php": "^7.1.0",
"craftcms/cms": "^3.3.0"
},
"autoload": {
"psr-4": {
"workingconcept\\trigger\\": "src/"
}
},
"extra": {
"name": "Trigger",
"handle": "trigger",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://github.com/workingconcept/trigger-craft-plugin/changelog.md",
"class": "workingconcept\\trigger\\Trigger"
}
}