-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.34 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
49
50
51
{
"name": "ryssbowh/craft-activity",
"description": "Record user activity in control panel",
"type": "craft-plugin",
"keywords": [
"cms",
"craftcms",
"user",
"activity",
"track"
],
"license": "proprietary",
"authors": [
{
"name": "The Web Puzzlers",
"homepage": "https://github.com/ryssbowh"
}
],
"require": {
"craftcms/cms": "^5.0",
"mpdf/mpdf": "^8.1"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-yii2": "^1.0",
"codeception/stub": "^3.0",
"vlucas/phpdotenv": "^5.4",
"symfony/var-dumper": "^5.3"
},
"autoload": {
"psr-4": {
"Ryssbowh\\Activity\\": "src/"
}
},
"extra": {
"name": "User Activity",
"handle": "activity",
"developer": "The Web Puzzlers",
"developerUrl": "https://www.webpuzzlers.co.uk",
"documentationUrl": "https://www.webpuzzlers.co.uk/plugins/user-activity/2.x",
"class": "Ryssbowh\\Activity\\Activity"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}