This repository was archived by the owner on Aug 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.61 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (85 loc) · 2.61 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
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
85
{
"name": "mimmi20/laminasviewrenderer-vite-url",
"description": "Provides a Viewhelper to render urls for resources build with Vite",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Thomas Müller",
"homepage": "https://github.com/mimmi20",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/mimmi20/laminasviewrenderer-vite-url/graphs/contributors"
}
],
"homepage": "https://github.com/mimmi20/laminasviewrenderer-vite-url",
"support": {
"issues": "https://github.com/mimmi20/laminasviewrenderer-vite-url/issues",
"source": "https://github.com/mimmi20/laminasviewrenderer-vite-url"
},
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0 || ~8.6.0",
"laminas/laminas-view": "^2.43.0",
"psr/container": "^1.1.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.52.0",
"infection/infection": "^0.34.1",
"jbelien/phpstan-sarif-formatter": "^1.2.0",
"laminas/laminas-modulemanager": "^2.19.0",
"laminas/laminas-servicemanager": "^3.22.1",
"mikey179/vfsstream": "^1.6.12",
"mimmi20/coding-standard": "^6.2.5",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.2.7",
"phpstan/phpstan-deprecation-rules": "^2.0.5",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpunit/phpunit": "^12.5.8",
"rector/rector": "^2.5.9",
"rector/type-perfect": "^2.2.0",
"shipmonk/composer-dependency-analyser": "^1.8.4",
"symplify/phpstan-rules": "^14.10.0",
"tomasvotruba/cognitive-complexity": "^1.2.0",
"tomasvotruba/type-coverage": "^2.2.1",
"tomasvotruba/unused-public": "^2.2.0"
},
"suggest": {
"laminas/laminas-modulemanager": "to register this project as module",
"laminas/laminas-servicemanager": "to use the viewhelper factories"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mimmi20\\LaminasView\\ViteUrl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mimmi20\\LaminasView\\ViteUrl\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"lock": false,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
},
"laminas": {
"component": "Mimmi20\\LaminasView\\ViteUrl",
"config-provider": "Mimmi20\\LaminasView\\ViteUrl\\ConfigProvider"
}
}
}