forked from mezzio/mezzio-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
86 lines (86 loc) · 2.55 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
{
"name": "mezzio/mezzio-tooling",
"description": "Migration and development tooling for Mezzio",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"mezzio",
"http",
"middleware",
"psr",
"psr-7"
],
"homepage": "https://mezzio.dev",
"support": {
"docs": "https://docs.mezzio.dev/mezzio/",
"issues": "https://github.com/mezzio/mezzio-tooling/issues",
"source": "https://github.com/mezzio/mezzio-tooling",
"rss": "https://github.com/mezzio/mezzio-tooling/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
},
"platform": {
"php": "7.4.99"
}
},
"extra": {
"laminas": {
"config-provider": "Mezzio\\Tooling\\ConfigProvider"
}
},
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0",
"ext-json": "*",
"laminas/laminas-cli": "^1.2",
"laminas/laminas-code": "^4.5",
"laminas/laminas-stdlib": "^3.1",
"laminas/laminas-stratigility": "^3.0",
"mezzio/mezzio": "^3.0",
"mezzio/mezzio-router": "^3.0",
"symfony/process": "^4.3 || ^5.1.2 || ^6.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.3.0",
"laminas/laminas-diactoros": "^1.8.7 || ^2.2.3",
"mikey179/vfsstream": "^1.6.10",
"mockery/mockery": "^1.2.4",
"php-mock/php-mock-phpunit": "^2.6",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5.11",
"psalm/plugin-mockery": "^0.9.1",
"psalm/plugin-phpunit": "^0.16.1",
"vimeo/psalm": "^4.10"
},
"autoload": {
"psr-4": {
"Mezzio\\Tooling\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MezzioTest\\Tooling\\": "test/"
}
},
"scripts": {
"check": [
"@license-check",
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"static-analysis": "psalm --shepherd --stats",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"license-check": "docheader check src/"
},
"conflict": {
"zendframework/zend-expressive-tooling": "*"
}
}