-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.39 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
{
"name": "vection-framework/contracts",
"description": "The Vection contracts provide the basis for cooperation between the individual Vection components.",
"type": "library",
"keywords": [
"contract",
"dependency",
"interface",
"framework",
"library",
"php",
"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/Contracts/blob/master/README.md",
"email": "vection@appsdock.de",
"issues": "https://github.com/Vection-Framework/Contracts/issues",
"source": "https://github.com/Vection-Framework/Contracts/"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/vection"
}
],
"require": {
"php": "^8.1",
"psr/log": "^1.1",
"psr/container": "^1.0",
"psr/event-dispatcher": "^1.0"
},
"autoload": {
"psr-4": {
"Vection\\Contracts\\": "./"
}
},
"minimum-stability": "stable"
}