-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.14 KB
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "asgrim/mini-mezzio",
"description": "Minimal Application Factory for Mezzio",
"type": "library",
"require": {
"php": "8.4.*|8.5.*",
"laminas/laminas-diactoros": "^3.8",
"laminas/laminas-httphandlerrunner": "^2.13",
"laminas/laminas-stratigility": "^4.3",
"mezzio/mezzio": "^3.27",
"mezzio/mezzio-router": "^4.2",
"psr/container": "^2.0"
},
"require-dev": {
"doctrine/coding-standard": "^14.0",
"laminas/laminas-servicemanager": "^4.5",
"mezzio/mezzio-fastroute": "^3.14",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^13.1"
},
"license": "MIT",
"authors": [
{
"name": "James Titcumb",
"email": "james@asgrim.com"
}
],
"autoload": {
"psr-4": {
"Asgrim\\MiniMezzio\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AsgrimTest\\MiniMezzio\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}