-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
50 lines (50 loc) · 1.86 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
49
50
{
"name": "hostnet/entity-tracker-bundle",
"description": "Wraps around the hostnet/entity-tracker-component and allows configuration of several listener components",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"hostnet/entity-tracker-component": "^2.0.0",
"psr/log": "^1.1.0",
"symfony/config": "^5.4||^6.0",
"symfony/dependency-injection": "^5.4||^6.0",
"symfony/http-kernel": "^5.4||^6.0",
"symfony/yaml": "^5.4||^6.0"
},
"require-dev": {
"hostnet/entity-blamable-component": "^1.0.4",
"hostnet/phpcs-tool": "^9.1.0",
"phpspec/prophecy": "^1.19",
"phpunit/phpunit": "^9.5.6",
"symfony/framework-bundle": "^5.4||^6.0",
"symfony/security-bundle": "^5.4||^6.0",
"phpspec/prophecy-phpunit": "^2.2"
},
"suggest": {
"hostnet/entity-blamable-component": "Provides the @Blamable annotation and listeners",
"hostnet/entity-mutation-component": "Provides the @Mutation annotation and listeners",
"hostnet/entity-revision-component": "Provides the @Revision annotation and listeners"
},
"autoload": {
"psr-4": {
"Hostnet\\Bundle\\EntityTrackerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Bundle\\EntityTrackerBundle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"hostnet/*": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"archive": {
"exclude": [
"/tests"
]
}
}