-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (47 loc) · 1.39 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
45
46
47
48
{
"name": "lsst/canto-dam-integrator",
"description": "This plugin is intended to be used with the Canto Digital Asset Management (DAM) web system.",
"type": "craft-plugin",
"keywords": ["dam", "digital", "asset", "manager"],
"license": "MIT",
"version": "v0.4.1",
"authors": [
{
"name": "Eric Rosas",
"homepage": "https://github.com/lsst-epo/craft-canto-dam-integrator"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/lsst-epo/craft-canto-dam-integrator/issues",
"source": "https://github.com/lsst-epo/craft-canto-dam-integrator",
"docs": "https://github.com/lsst-epo/craft-canto-dam-integrator/blob/main/README.md"
},
"require": {
"craftcms/cms": "^4.4.1"
},
"autoload": {
"psr-4": {
"lsst\\dam\\": "src/"
}
},
"extra": {
"name": "Canto DAM Integrator",
"handle": "canto-dam-integrator",
"class": "lsst\\dam\\DamPlugin"
},
"require-dev": {
"vlucas/phpdotenv": "^3.0",
"codeception/codeception": "^4.2.2",
"codeception/module-asserts": "^2.0",
"codeception/module-yii2": "^1.1",
"ext-zip": "^1.15",
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}