-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
116 lines (116 loc) · 4 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
{
"name": "laminas/laminas.dev",
"type": "project",
"description": "laminas.dev website, including Laminas Bot, providing webhooks and chat integration for the Laminas Project",
"keywords": [
"laminas",
"mezzio"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/laminas/laminas.dev/issues",
"source": "https://github.com/laminas/laminas.dev",
"rss": "https://github.com/laminas/laminas.dev/releases.atom"
},
"require": {
"php": "~8.2.0",
"ext-curl": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-openswoole": "*",
"beberlei/assert": "^3.3.2",
"colorfield/mastodon-api": "^0.1.5",
"guzzlehttp/guzzle": "^7.8.1",
"laminas/laminas-cli": "^1.10.0",
"laminas/laminas-component-installer": "^3.4.0",
"laminas/laminas-config-aggregator": "^1.14.0",
"laminas/laminas-config-aggregator-parameters": "^1.15.0",
"laminas/laminas-diactoros": "^3.3.1",
"laminas/laminas-http": "^2.19.0",
"laminas/laminas-servicemanager": "^3.22.1",
"laminas/laminas-stdlib": "^3.19.0",
"laminas/laminas-stratigility": "^3.11.0",
"league/commonmark": "^2.4.2",
"mezzio/mezzio": "^3.19.0",
"mezzio/mezzio-fastroute": "^3.11.0",
"mezzio/mezzio-hal": "^2.9.0",
"mezzio/mezzio-helpers": "^5.16.0",
"mezzio/mezzio-platesrenderer": "^2.10.0",
"mezzio/mezzio-problem-details": "^1.14.0",
"mezzio/mezzio-swoole": "^4.9.0",
"mezzio/mezzio-template": "^2.10.0",
"monolog/monolog": "^3.5.0",
"phly/phly-event-dispatcher": "^1.4.0",
"phpseclib/phpseclib": "^3.0.37",
"psr/container": "^1.1.2 || ^2.0.2",
"psr/event-dispatcher": "^1.0",
"psr/http-factory": "^1.0.2",
"psr/http-message": "^2.0.0",
"psr/http-server-handler": "^1.0.2",
"psr/http-server-middleware": "^1.0.2",
"psr/log": "^3.0"
},
"require-dev": {
"filp/whoops": "^2.15.3",
"laminas/laminas-coding-standard": "~2.5.0",
"laminas/laminas-development-mode": "^3.11",
"mezzio/mezzio-tooling": "^2.8",
"phpspec/prophecy-phpunit": "^2.0.2",
"phpunit/phpunit": "^9.6.13",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7.2"
},
"config": {
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"laminas/laminas-component-installer": true,
"ocramius/package-versions": true
}
},
"extra": {
"laminas": {
"component-ignore-list": [
"mezzio/mezzio-tooling"
],
"component-auto-installs": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute",
"mezzio/mezzio-twigrenderer"
]
}
},
"autoload": {
"files": [
"override/openswoole22-compat.php"
],
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"mezzio": "mezzio --ansi",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover=data/coverage/clover.xml",
"test-infection": "infection --threads=4 --coverage=data/coverage"
}
}