-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.68 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.68 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
{
"name": "getdevflow/cmf",
"type": "project",
"description": "Developer-centric content management framework.",
"keywords": ["framework","content-management","cms","cmf","content-management-system","headless","headless-cms"],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Joshua Parker",
"email": "joshua@joshuaparker.dev",
"homepage": "https://joshuaparker.dev/",
"role": "Developer"
}
],
"require": {
"php": ">=8.4",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-zip": "*",
"composer/installers": "^2.3",
"getdevflow/core": "2.x-dev",
"oomphinc/composer-installers-extender": "^2.0"
},
"autoload": {
"psr-4": {
"Application\\": "Cms/Application",
"Domain\\": "Cms/Domain",
"Database\\Seeders\\": "database/seeders/",
"Infrastructure\\": "Cms/Infrastructure",
"Plugin\\": "public/plugins/",
"Theme\\": "public/themes/"
}
},
"scripts": {
"devstan": "phpstan analyse -l 2",
"test": "vendor/bin/pest",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"post-create-project-cmd": [
"touch .enc.key",
"cp .env.example .env"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true,
"composer/installers": true,
"oomphinc/composer-installers-extender": true
}
},
"require-dev": {
"qubus/qubus-coding-standard": "^2.1.2"
},
"suggest": {
"fenom/fenom": "Lightweight and fast template engine for PHP.",
"fenom/providers-collection": "Additional providers for Fenom template engine.",
"foil/foil": "Write simple, clean, and concise templates with nothing more than PHP.",
"jolicode/jolinotif": "Send notifications to your desktop directly from your PHP script",
"mobiledetect/mobiledetectlib": "Mobile Detect is a lightweight PHP class for detecting mobile devices (including tablets).",
"webonyx/graphql-php": "A PHP implementation of the GraphQL specification based on the reference implementation in JavaScript."
},
"extra": {
"installer-types": ["devflow-core","devflow-plugin","devflow-theme"],
"installer-paths": {
"core/": ["type:devflow-core"],
"public/plugins/{$name}/": ["type:devflow-plugin"],
"public/themes/{$name}/": ["type:devflow-theme"]
}
}
}