-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.07 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.07 KB
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
{
"name": "utopia-php/audit",
"description": "A simple audit library to manage application users logs",
"type": "library",
"keywords": [
"php",
"framework",
"upf",
"utopia",
"audit"
],
"license": "MIT",
"minimum-stability": "stable",
"scripts": {
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint",
"check": "./vendor/bin/phpstan analyse --level max src tests"
},
"autoload": {
"psr-4": {
"Utopia\\Audit\\": "src/Audit"
}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\": "tests"
}
},
"require": {
"php": ">=8.0",
"utopia-php/database": "5.*",
"utopia-php/fetch": "0.5.*",
"utopia-php/validators": "0.2.*"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"phpstan/phpstan": "1.*",
"laravel/pint": "1.*"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
}
}