-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.75 KB
/
Copy pathcomposer.json
File metadata and controls
92 lines (92 loc) · 2.75 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
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
{
"name": "switon/http",
"description": "Controller-based HTTP boundary with request input, response shaping, lifecycle hooks, and runtime adapters for Switon Framework",
"type": "library",
"keywords": [
"switon",
"http",
"server",
"requests",
"responses"
],
"homepage": "https://github.com/switon-php/http",
"license": "MIT",
"authors": [
{
"name": "switon",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/switon-php/http",
"issues": "https://github.com/switon-php/http/issues",
"docs": "https://docs.switon.dev/latest/http"
},
"require": {
"ext-dom": "*",
"php": ">=8.3",
"psr/event-dispatcher": "^1.0",
"switon/binding": "^1.0",
"switon/command": "^1.0",
"switon/composer-extra": "^1.0",
"switon/core": "^1.0",
"switon/event": "^1.0",
"switon/id": "^1.0",
"switon/invocation": "^1.0",
"switon/invoker": "^1.0",
"switon/kernel": "^1.0",
"switon/principal": "^1.0",
"switon/renderer": "^1.0",
"switon/router": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"switon/i18n": "^1.0",
"switon/testing": "^1.0",
"switon/validation": "^1.0",
"phpstan/extension-installer": "^1.4"
},
"config": {
"allow-plugins": {
"switon/composer-extra": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Switon\\Http\\": "src/"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Switon\\Http\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "@php vendor/bin/phpstan analyse",
"test:unit": "@php vendor/bin/phpunit --configuration tests/phpunit.xml.dist --testsuite=unit --display-deprecations --display-phpunit-notices",
"test": "@php vendor/bin/phpunit --configuration tests/phpunit.xml.dist --testsuite=all --display-deprecations --display-phpunit-notices"
},
"extra": {
"switon": {
"providers": [
"Switon\\Http\\ServiceProvider"
],
"commands": [
"Switon\\Http\\Command\\FilterCommand"
],
"listeners": [
"Switon\\Http\\RequestInterface",
"Switon\\Http\\CookiesInterface",
"Switon\\Http\\Server\\Listener\\RenameProcessTitleListener",
"Switon\\Http\\Server\\Listener\\LogServerStatusListener"
]
},
"branch-alias": {
"dev-dev": "1.0.x-dev"
}
}
}