-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
73 lines (60 loc) · 1.38 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name" : "ipub/doctrine-blameable",
"type" : "library",
"description" : "Behavior for automate the update of username or user reference fields on your Entities.",
"keywords" : [
"nette",
"blameable",
"doctrine",
"tools",
"ipub",
"ipublikuj"
],
"homepage" : "https://github.com/iPublikuj/doctrine-blameable",
"license" : [
"GPL-2.0",
"GPL-3.0"
],
"authors" : [
{
"name" : "iPublikuj:cms",
"email" : "[email protected]",
"homepage" : "https://www.ipublikuj.eu/"
}
],
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/iPublikuj/doctrine-blameable/issues"
},
"extra" : {
"ipub" : {
"configuration" : {
"extension" : "IPub\\DoctrineBlameable\\DI\\DoctrineBlameableExtension"
}
}
},
"require" : {
"php" : ">=7.2.0",
"doctrine/orm" : "~2.5",
"nette/di" : "~3.0",
"nette/utils" : "~3.0",
"nette/security" : "~3.0"
},
"require-dev" : {
"nette/bootstrap" : "~3.0",
"nette/http" : "~3.0",
"nette/mail" : "~3.0",
"nette/robot-loader" : "~3.0",
"nette/safe-stream" : "~2.3",
"nette/tester" : "~2.3",
"tracy/tracy" : "~2.4",
"pds/skeleton" : "~1.0",
"nettrine/orm" : "~0.3",
"contributte/console" : "~0.7"
},
"autoload" : {
"psr-0" : {
"IPub\\DoctrineBlameable\\" : "src/"
}
}
}