-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
66 lines (66 loc) · 2.46 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
58
59
60
61
62
63
64
65
66
{
"name": "getdevflow/cmf",
"type": "project",
"description": "Developer-centric, headless content management framework.",
"keywords": ["devflow","framework","content-management"],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Joshua Parker",
"email": "joshua@joshuaparker.dev",
"homepage": "https://joshuaparker.dev/",
"role": "Developer"
}
],
"require": {
"php": ">=8.3",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"getdevflow/core": "1.x-dev"
},
"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"]
}
},
"autoload": {
"psr-4": {
"Cms\\": "Cms/",
"Plugin\\": "public/plugins/",
"Theme\\": "public/themes/"
}
},
"scripts": {
"test": "vendor/bin/pest",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
},
"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": {
"pestphp/pest": "^1.23",
"qubus/qubus-coding-standard": "^1.1"
},
"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.",
"spatie/schema-org": "Provides a fluent builder for all Schema.org types and their properties.",
"arcanedev/seo-helper": "SEO Helper is a package that provides tools and helpers for SEO (Search Engine Optimization)."
}
}