-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.08 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
{
"name": "domos/wordpress-core",
"type": "wordpress-plugin",
"description": "Die domos WordPress-Integration",
"homepage": "https://domos.de",
"authors": [
{
"name": "Lukas Mateffy (domos GmbH)",
"email": "[email protected]",
"homepage": "https://domos.de"
}
],
"keywords": [
"wordpress"
],
"support": {
"issues": "https://github.com/roots/clover/issues",
"forum": "https://discourse.roots.io/"
},
"autoload": {
"psr-4": {
"Domos\\Core\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Domos\\Core\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"roots/acorn": "^3.2.0",
"ext-json": "*",
"yahnis-elsts/plugin-update-checker": "^5.2",
"domos/schema": "0.0.8"
},
"scripts": {
"lint": "pint",
"test": "echo 'The road to hell is paved with good intentions.'",
"post-autoload-dump": [
"Roots\\Acorn\\ComposerScripts::postAutoloadDump"
]
},
"require-dev": {
"laravel/pint": "^1.2"
},
"minimum-stability": "dev",
"__repositories": [
{
"type": "path",
"url": "../../schema.immo"
}
]
}