-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.49 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "charcoal-dev/app-kernel",
"description": "Kernel for Charcoal Framework Apps",
"type": "library",
"homepage": "https://github.com/charcoal-dev/app-kernel",
"license": "MIT",
"authors": [
{
"name": "Furqan A. Siddiqui",
"email": "hello@furqansiddiqui.com",
"homepage": "https://www.furqansiddiqui.com",
"role": "Author"
}
],
"require": {
"php": "^8.5",
"ext-pdo": "*",
"ext-json": "*",
"ext-ctype": "*",
"charcoal-dev/contracts": "^0.1.25",
"charcoal-dev/ansi": "^0.1.2",
"charcoal-dev/base": "^0.2.7",
"charcoal-dev/buffers": "^0.2.4",
"charcoal-dev/cache-redis-client": "^0.2.7",
"charcoal-dev/filesystem": "^0.2.16",
"charcoal-dev/events": "^0.2.0",
"charcoal-dev/cache": "^0.2.5",
"charcoal-dev/database": "^0.2.9",
"charcoal-dev/db-orm": "^0.2.15",
"charcoal-dev/cli": "^0.2.12",
"charcoal-dev/http-trust-proxy": "^0.1.3",
"charcoal-dev/http-commons": "^0.2.31",
"charcoal-dev/http-server": "^0.2.60",
"charcoal-dev/cipher": "^0.2.9",
"charcoal-dev/secrets-kms": "^0.1.17",
"charcoal-dev/mailer": "^0.2.4"
},
"autoload": {
"psr-4": {
"Charcoal\\App\\Kernel\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"Charcoal\\Tests\\App\\Unit\\": "tests/unit/",
"Charcoal\\Tests\\App\\Fixtures\\": "tests/fixtures/",
"Charcoal\\Tests\\App\\Sandbox\\TestApp\\": "tests/sandbox/TestApp/src/"
}
},
"minimum-stability": "dev"
}