forked from hostnet/entity-tracker-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.54 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.54 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
47
48
{
"name": "hostnet/entity-tracker-bundle",
"description": "Wraps around the hostnet/entity-tracker-component and allows configuration of several listener components",
"license": "MIT",
"require": {
"php" : "5.*, >=5.4",
"symfony/config" : "2.*, >=2.4",
"symfony/dependency-injection" : "2.*, >=2.4",
"symfony/http-kernel" : "2.*, >=2.4",
"hostnet/entity-tracker-component" : "1.*",
"psr/log" : "1.*"
},
"require-dev": {
"phpunit/phpunit" : "4.*"
},
"suggest": {
"hostnet/entity-revision-component" : "Provides the @Revision annotation and listeners",
"hostnet/entity-mutation-component" : "Provides the @Mutation annotation and listeners",
"hostnet/entity-blamable-component" : "Provides the @Blamable annotation and listeners"
},
"conflict": {
"hostnet/entity-revision-component" : "<1.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Hostnet\\Bundle\\EntityTrackerBundle\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Bundle\\EntityTrackerBundle\\" : "test/"
}
},
"archive": {
"exclude": [ "/test" ]
},
"authors": [
{
"name": "Iltar van der Berg",
"email": "ivanderberg@hostnet.nl"
},
{
"name": "Yannick de Lange",
"email": "ydelange@hostnet.nl"
}
]
}