-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.17 KB
/
Copy pathcomposer.json
File metadata and controls
91 lines (91 loc) · 2.17 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
{
"name": "citomni/provider-skeleton",
"description": "Template provider for CitOmni apps: Boot constants (MAP/CFG), example route/controller, service, command, and model. Ultra-lean, deterministic, PHP",
"type": "project",
"extra": {
"citomni-skeleton": true
},
"license": "MIT",
"homepage": "https://github.com/citomni/provider-skeleton",
"keywords": [
"citomni",
"provider",
"skeleton",
"php",
"psr-4",
"low-overhead",
"deterministic",
"php8",
"green-by-design",
"routes",
"controller",
"service",
"command",
"framework"
],
"require": {
"php": "^8.5",
"citomni/kernel": "^1.0"
},
"autoload": {
"psr-4": {
"CitOmni\\ProviderSkeleton\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CitOmni\\ProviderSkeleton\\Tests\\": "tests/"
}
},
"suggest": {
"citomni/http": "HTTP runtime (Router, Request, Response, View) if you use the provided routes/controllers.",
"citomni/cli": "CLI runtime if you wire commands into a command runner.",
"ext-opcache": "Better performance in production."
},
"support": {
"issues": "https://github.com/citomni/provider-skeleton/issues",
"source": "https://github.com/citomni/provider-skeleton",
"docs": "https://github.com/citomni/provider-skeleton#readme"
},
"authors": [
{
"name": "Lars Grove Mortensen",
"homepage": "https://www.citomni.com"
}
],
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"apcu-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": [
"/.github",
"/docs",
"/tests",
"/dev",
"/examples",
"/vendor",
"/.editorconfig",
"/.gitattributes",
"/.gitignore",
"/phpunit.xml*",
"/.idea",
"/.vscode",
"/Makefile"
]
},
"scripts": {
"post-create-project-cmd": [
"php scripts/setup.php"
],
"scaffold:provider": [
"php -r \"copy('stubs/provider.composer.json.stub','composer.json'); echo 'composer.json updated from stub.\\n';\"",
"php -r \"if (file_exists('stubs/README.provider.stub')) { copy('stubs/README.provider.stub','README.md'); echo 'README.md updated from stub.\\n'; }\"",
"composer validate || true",
"composer dump-autoload -o || true"
]
}
}