-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
48 lines (48 loc) · 1.07 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": "setbased/php-audit",
"description": "A tool for creating audit tables and triggers for logging data changes in a MySQL database.",
"keywords": [
"MySQL",
"Audit",
"Triggers"
],
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-json": "*",
"setbased/error-handler": "^1.3.0",
"setbased/exception": "^2.3.0",
"setbased/helper-code-store-mysql": "^2.2.0",
"setbased/php-stratum-middle": "^5.12.0",
"setbased/php-stratum-mysql": "^7.0.0",
"setbased/typed-config": "^2.0.0",
"symfony/console": "^6.4.12"
},
"require-dev": {
"ext-pcntl": "*",
"ext-posix": "*",
"phing/phing": "^3.0.0",
"phpunit/phpunit": "^10.5.35",
"setbased/phing-extensions": "^3.1.0"
},
"autoload": {
"psr-4": {
"SetBased\\Audit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SetBased\\Audit\\Test\\": "test/"
}
},
"bin": [
"bin/audit"
],
"config": {
"bin-dir": "bin/",
"sort-packages": true,
"allow-plugins": {
"phing/phing-composer-configurator": true
}
}
}