generated from mimmi20/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
84 lines (84 loc) · 2.45 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
77
78
79
80
81
82
83
84
{
"name": "mimmi20/laminasviewrenderer-revision",
"description": "Revision Viewhelper",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Thomas Müller",
"homepage": "https://github.com/mimmi20",
"role": "Developer"
}
],
"homepage": "https://github.com/mimmi20/laminasviewrenderer-revision",
"support": {
"issues": "https://github.com/mimmi20/laminasviewrenderer-revision/issues",
"source": "https://github.com/mimmi20/laminasviewrenderer-revision"
},
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-json": "*",
"laminas/laminas-uri": "^2.13.0",
"laminas/laminas-view": "^2.36.0",
"psr/container": "^1.1.2 || ^2.0.2"
},
"require-dev": {
"ext-ctype": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"infection/infection": "^0.29.10",
"laminas/laminas-http": "^2.21.0",
"laminas/laminas-modulemanager": "^2.17.0",
"laminas/laminas-servicemanager": "^3.22.1",
"mikey179/vfsstream": "^1.6.12",
"mimmi20/coding-standard": "^6.0.1",
"nikic/php-parser": "^5.3.1",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.9",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpunit/phpunit": "^11.5.2",
"rector/rector": "^1.2.10",
"rector/type-perfect": "^1.0.0",
"symfony/process": "^7.2.0",
"symplify/phpstan-rules": "^13.0.1",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"tomasvotruba/type-coverage": "^1.0.0",
"tomasvotruba/unused-public": "^1.1.0"
},
"suggest": {
"laminas/laminas-modulemanager": "to register this project as module",
"laminas/laminas-servicemanager": "to use the navigation factories"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mimmi20\\LaminasView\\Revision\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mimmi20\\LaminasView\\Revision\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"lock": false,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laminas": {
"component": "Mimmi20\\LaminasView\\Revision",
"config-provider": "Mimmi20\\LaminasView\\Revision\\ConfigProvider"
}
}
}