forked from mezzio/mezzio-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.33 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
{
"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
},
"extra": {
},
"require": {
"php": "^7.3 || ~8.0.0",
"ext-json": "*",
"composer/package-versions-deprecated": "^1.11",
"laminas/laminas-code": "^2.6.3 || ^3.3",
"laminas/laminas-component-installer": "^2.0",
"laminas/laminas-composer-autoloading": "^2.0",
"laminas/laminas-stdlib": "^3.1",
"laminas/laminas-stratigility": "^3.0",
"laminas/laminas-zendframework-bridge": "^1.0",
"mezzio/mezzio": "^3.0",
"mezzio/mezzio-router": "^3.0",
"symfony/console": "^2.8 || ^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~1.0.0",
"laminas/laminas-diactoros": "^1.8.7 || ^2.2.3",
"malukenho/docheader": "^0.1.6",
"mikey179/vfsstream": "^1.6.7",
"mockery/mockery": "^1.2.4",
"php-mock/php-mock-phpunit": "^2.5",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.4.1"
},
"autoload": {
"psr-4": {
"Mezzio\\Tooling\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MezzioTest\\Tooling\\": "test/"
}
},
"bin": [
"bin/mezzio"
],
"scripts": {
"check": [
"@license-check",
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"license-check": "docheader check src/"
},
"replace": {
"zendframework/zend-expressive-tooling": "^1.3.0"
}
}