forked from atk4/audit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 915 Bytes
/
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
{
"name": "atk4/audit",
"type": "library",
"description": "Agile Data - Audit Extension",
"keywords": ["agile", "data", "framework", "audit", "event sourcing", "crud", "acl"],
"homepage": "http://agiletoolkit.org/data/extension/audit",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Romans Malinovskis",
"email": "[email protected]",
"homepage": "https://nearly.guru/"
}
],
"require": {
"php": ">=5.6.0",
"atk4/data": "dev-develop",
"atk4/schema": "dev-develop"
},
"require-dev": {
"phpunit/phpunit": "<6",
"codeclimate/php-test-reporter": "*"
},
"autoload": {
"psr-4": {"atk4\\audit\\":"src/"}
},
"autoload-dev": {
"psr-4": {
"atk4\\audit\\tests\\":"tests/"
}
}
}