-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathcomposer.json
48 lines (48 loc) · 1.14 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": "bedezign/yii2-audit",
"description": "Yii2 Audit records and displays web/cli requests, database changes, php/js errors and associated data.",
"keywords": [
"yii2",
"audit",
"trail",
"logging"
],
"type": "yii2-extension",
"license": "MIT",
"authors": [
{
"name": "Steve Guns",
"homepage": "http://bedezign.com/",
"email": "[email protected]"
},
{
"name": "Brett O'Donnell",
"homepage": "https://mrphp.com.au/",
"email": "[email protected]"
},
{
"name": "Marc Hollander",
"homepage": "http://maruc.nl/",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"ext-bcmath": "*",
"yiisoft/yii2": ">=2.0.0 <2.1.0",
"yiisoft/yii2-debug": ">=2.1.0 <2.2.0",
"2amigos/yii2-chartjs-widget": ">=2.0.1 <3.0.0",
"phpspec/php-diff": "1.*"
},
"suggest": {
"php-mime-mail-parser/php-mime-mail-parser": "Allows better displaying of logged emails."
},
"autoload": {
"psr-4": {
"bedezign\\yii2\\audit\\": "src"
}
},
"extra": {
"bootstrap": "bedezign\\yii2\\audit\\Bootstrap"
}
}