-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (67 loc) · 1.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
{
"name": "xtreamwayz/mezzio-console",
"type": "library",
"description": "Symfony Console for Mezzio",
"keywords": [
"console",
"mezzio"
],
"license": "MIT",
"authors": [
{
"name": "Geert Eltink",
"homepage": "https://github.com/geerteltink"
}
],
"require": {
"php": "^7.4 || ^8.0",
"psr/container": "^1.0 || ^2.0",
"symfony/console": "^5.0 || ^6.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.3.0",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpstan/phpstan": "^1.4.2",
"phpunit/phpunit": "^9.5.12"
},
"config": {
"sort-packages": true
},
"extra": {
"laminas": {
"config-provider": "Xtreamwayz\\Mezzio\\Console\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"Xtreamwayz\\Mezzio\\Console\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XtreamwayzTest\\Mezzio\\Console\\": "test/"
}
},
"bin": [
"bin/mezzio-console"
],
"scripts": {
"analyse": "phpstan analyse --level=0 src",
"analyse-strict": "phpstan analyse -l 7 src",
"check": [
"@cs-check",
"@test",
"@analyse"
],
"cs-check": "phpcs --colors",
"cs-fix": "phpcbf --colors",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"support": {
"issues": "https://github.com/xtreamwayz/mezzio-console/issues",
"forum": "https://github.com/xtreamwayz/community/discussions",
"source": "https://github.com/xtreamwayz/mezzio-console",
"docs": "https://xtreamwayz.github.io/mezzio-console/"
}
}