-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.34 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.34 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
{
"name": "vection-framework/vection",
"type": "library",
"description": "Vection is a future-proof PHP component library and framework that focuses on flexibility, developer friendly code and lightweight to rich enterprise components. Vection can be used to realize small to large enterprise applications.",
"keywords": [
"api",
"bus",
"cache",
"cqrs",
"dependency",
"enterprise",
"event",
"framework",
"hook",
"http",
"injection",
"kernel",
"library",
"messenger",
"middleware",
"php",
"rest",
"service",
"validator",
"vection"
],
"homepage": "https://vection.appsdock.org",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "David M. Lung",
"email": "david.lung@appsdock.de"
},
{
"name": "David Brucksch",
"email": "david.brucksch@appsdock.de"
}
],
"support": {
"chat": "https://discord.gg/ZhPaXkccpg",
"docs": "https://github.com/Vection-Framework/Vection/blob/master/README.md",
"email": "vection@appsdock.de",
"issues": "https://github.com/Vection-Framework/Vection/issues",
"source": "https://github.com/Vection-Framework/Vection/"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/vection"
}
],
"require": {
"ext-ctype": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"php": "^8.4",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message":"^1.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"ext-yaml": "*",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Vection\\": "src/"
}
},
"minimum-stability": "stable",
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --no-progress",
"test": "vendor/bin/phpunit --no-coverage"
}
}