-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (67 loc) · 1.63 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
74
75
76
{
"name" : "ipub/doctrine-timestampable",
"type" : "library",
"description" : "Behavior for automate the update of timestamp fields on your entities.",
"keywords" : [
"nette",
"timestampable",
"doctrine",
"tools",
"ipub",
"ipublikuj"
],
"homepage" : "https://github.com/iPublikuj/doctrine-timestampable",
"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-timestampable/issues"
},
"extra" : {
"ipub" : {
"configuration" : {
"extension" : "IPub\\DoctrineTimestampable\\DI\\DoctrineTimestampableExtension"
}
}
},
"require" : {
"php" : ">=8.1.0",
"doctrine/orm" : "^2.6|^3.0",
"nette/di" : "^3.0|^4.0",
"nette/utils" : "^3.2|^4.0"
},
"require-dev" : {
"contributte/console": "^0.9",
"mockery/mockery": "^1.4",
"nette/bootstrap": "^3.1",
"nettrine/cache": "^0.3",
"nettrine/orm": "^0.8",
"ninjify/nunjuck": "^0.3",
"ninjify/qa": "^0.12",
"pds/skeleton": "~1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-nette": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"tracy/tracy": "^2.8"
},
"autoload" : {
"psr-4" : {
"IPub\\DoctrineTimestampable\\" : "src/"
}
},
"config" : {
"sort-packages" : true
}
}