-
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.06 KB
/
Copy pathcomposer.json
File metadata and controls
92 lines (92 loc) · 2.06 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": "webifycms/app",
"description": "WebifyCMS is an application framework that enables users to craft stunning web applications. The framework simplifies the creation process with built-in content management features.",
"license": "MIT",
"keywords": [
"webify",
"webifycms",
"cms",
"cms project",
"php cms",
"ddd cms",
"php ddd",
"app template",
"php app template",
"clean architecture",
"php clean architecture"
],
"homepage": "https://www.webifycms.com/",
"type": "project",
"support": {
"issues": "https://github.com/webifycms/app/issues?state=open",
"source": "https://github.com/webifycms/app"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.4",
"webifycms/ext-base": "^0.1.0-alpha",
"oomphinc/composer-installers-extender": "^2.0"
},
"require-dev": {
"webifycms/dev-tools": "^1.0",
"phpunit/phpunit": "^13.1",
"fakerphp/faker": "^1.24",
"phpat/phpat": "^0.12",
"filp/whoops": "^2.18",
"roave/security-advisories": "dev-latest"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"oomphinc/composer-installers-extender": true,
"composer/installers": true
}
},
"optimize-autoloader": true,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "test/",
"App\\Dev\\": "dev/"
}
},
"scripts": {
"analyse": [
"phpstan"
],
"sniff": [
"php-cs-fixer fix --show-progress=dots --diff --dry-run"
],
"test": [
"phpunit test"
],
"code-check": ["@analyse", "@sniff"],
"code-format": [
"php-cs-fixer fix --show-progress=dots"
]
},
"extra": {
"installer-types": [
"webifycms-extension",
"webifycms-theme"
],
"installer-paths": {
"extensions/{$name}/": [
"type:webifycms-extension"
],
"themes/{$name}/": [
"type:webifycms-theme"
]
}
}
}