-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
31 lines (31 loc) · 946 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
{
"name": "hostnet/entity-blamable-component",
"description": "Listens to an event so auditable information can be set",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.3|^8.0",
"doctrine/orm": "^2.4.0",
"hostnet/entity-tracker-component": "^1.2.0||^2.0.0"
},
"require-dev": {
"hostnet/phpcs-tool": "^9.1.0",
"phpunit/phpunit": "^9.5.6"
},
"autoload": {
"psr-4": {
"Hostnet\\Component\\EntityBlamable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Component\\EntityBlamable\\": "test/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"hostnet/*": true
}
}
}