-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
129 lines (129 loc) · 4.59 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "mezzio/mezzio-skeleton",
"description": "Laminas mezzio skeleton. Begin developing PSR-15 middleware applications in seconds!",
"type": "project",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"mezzio",
"skeleton",
"middleware",
"psr",
"psr-7",
"psr-11",
"psr-15"
],
"homepage": "https://mezzio.dev",
"support": {
"docs": "https://docs.mezzio.dev/mezzio/",
"issues": "https://github.com/mezzio/mezzio-skeleton/issues",
"source": "https://github.com/mezzio/mezzio-skeleton",
"rss": "https://github.com/mezzio/mezzio-skeleton/releases.atom",
"chat": "https://laminas.dev/chat",
"forum": "https://discourse.laminas.dev"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"laminas/laminas-component-installer": true
},
"platform": {
"php": "8.1.99"
}
},
"extra": {
"laminas": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner"
]
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"composer/package-versions-deprecated": "^1.10.99",
"laminas/laminas-component-installer": "^2.6 || ^3.0",
"laminas/laminas-config-aggregator": "^1.6",
"laminas/laminas-diactoros": "^3.0.0",
"laminas/laminas-stdlib": "^3.6",
"mezzio/mezzio": "^3.7",
"mezzio/mezzio-helpers": "^5.7"
},
"require-dev": {
"chubbyphp/chubbyphp-laminas-config": "^1.3.0",
"composer/composer": "^2.7.7",
"elie29/zend-phpdi-config": "^9.0.1",
"filp/whoops": "^2.15.4",
"jsoumelidis/zend-sf-di-config": "^0.5.1",
"laminas/laminas-coding-standard": "~2.5.0",
"laminas/laminas-development-mode": "^3.12.0",
"laminas/laminas-servicemanager": "^3.22.1",
"mezzio/mezzio-fastroute": "^3.11.0",
"mezzio/mezzio-laminasrouter": "^3.9.0",
"mezzio/mezzio-laminasviewrenderer": "^2.15.1",
"mezzio/mezzio-platesrenderer": "^2.10.0",
"mezzio/mezzio-tooling": "^2.9",
"mezzio/mezzio-twigrenderer": "^2.15.0",
"mikey179/vfsstream": "^1.6.11",
"phpunit/phpunit": "^10.5.28",
"psalm/plugin-phpunit": "^0.19.0",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^5.25"
},
"autoload": {
"psr-4": {
"App\\": "src/App/src/",
"MezzioInstaller\\": "src/MezzioInstaller/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/",
"MezzioInstallerTest\\": "test/MezzioInstallerTest/"
}
},
"scripts": {
"pre-install-cmd": "MezzioInstaller\\OptionalPackages::install",
"pre-update-cmd": "MezzioInstaller\\OptionalPackages::install",
"post-create-project-cmd": [
"@development-enable"
],
"post-install-cmd": "@clear-config-cache",
"post-update-cmd": "@clear-config-cache",
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"mezzio": "laminas --ansi",
"check": [
"@cs-check",
"@test"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"enable-codestandard": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"cs-check": [
"@enable-codestandard",
"phpcs -s"
],
"cs-fix": [
"@enable-codestandard",
"phpcbf"
],
"serve": [
"Composer\\Config::disableProcessTimeout",
"php -S 0.0.0.0:8080 -t public/"
],
"static-analysis": "psalm --stats",
"static-analysis-update-baseline": "psalm --stats --update-baseline",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"scripts-descriptions": {
"clear-config-cache": "Clears merged config cache. Required for config changes to be applied.",
"static-analysis": "Run static analysis tool Psalm.",
"static-analysis-update-baseline": "Run static analysis tool Psalm and update baseline."
}
}