-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.23 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.23 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
{
"name": "koldy/framework",
"type": "framework",
"description": "Koldy PHP framework for simple and rapid development",
"keywords": [
"framework"
],
"homepage": "https://koldy.net",
"license": "MIT",
"authors": [
{
"name": "Vlatko Koudela",
"email": "vlatko@koldy.net",
"role": "Developer"
}
],
"require": {
"php": ">=8.3"
},
"suggest": {
"ext-pdo": "Required for database operations",
"ext-mbstring": "Required for multibyte string handling",
"ext-memcached": "Required for memcached caching",
"ext-openssl": "Required for encryption/SSL operations",
"ext-json": "Required for JSON encoding/decoding",
"ext-curl": "Required for HTTP requests",
"ext-iconv": "Required for character encoding conversion",
"ext-ctype": "Required for character type checking",
"ext-bcmath": "Required for arbitrary precision math"
},
"require-dev": {
"phpstan/phpstan": "^2.1.17",
"phpunit/phpunit": "^12.0"
},
"config": {
"bin-dir": "bin",
"vendor-dir": "vendor"
},
"scripts": {
"phpstan": "bin/phpstan"
},
"autoload": {
"psr-4": {
"Koldy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}