-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1 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
{
"name": "vaersaagod/shoot",
"description": "Screenshot stuff.",
"type": "craft-plugin",
"version": "2.1.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"shoot"
],
"support": {
"docs": "https://github.com/vaersaagod/shoot/blob/master/README.md",
"issues": "https://github.com/vaersaagod/shoot/issues"
},
"license": "MIT",
"authors": [
{
"name": "Værsågod",
"homepage": "https://vaersaagod.no"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"spatie/browsershot": "^3.12"
},
"autoload": {
"psr-4": {
"vaersaagod\\shoot\\": "src/"
}
},
"extra": {
"name": "Shoot",
"handle": "shoot",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/vaersaagod/shoot/master/CHANGELOG.md",
"class": "vaersaagod\\shoot\\Shoot"
}
}