-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 1.89 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "koded/framework",
"type": "library",
"license": "BSD-3-Clause",
"description": "Micro framework for RESTful apps",
"homepage": "https://kodeart.github.io/koded/",
"support": {
"issues": "https://github.com/kodeart/koded/issues",
"source": "https://github.com/kodeart/koded"
},
"keywords": [
"rmr",
"rest",
"micro",
"framework"
],
"require": {
"php": "^8.1",
"psr/http-server-middleware": "^1",
"koded/container": "^3",
"koded/cache-simple": "^3.1",
"koded/http": "4.*",
"koded/i18n": "^0.9.2",
"koded/logging": "^3.3",
"koded/session": "2.*",
"filp/whoops": "^2.15",
"ext-json": "*",
"ext-mbstring": "*"
},
"autoload": {
"classmap": [
"src/"
],
"exclude-from-classmap": [
"bench/",
"build/",
"cache/",
"docs/",
"locale/",
"public/",
"site/",
"tests/"
],
"files": [
"src/Support/responders.php",
"src/Support/functions.php"
]
},
"provide": {
"psr/container-implementation": "^2",
"psr/simple-cache-implementation": "^3",
"psr/http-message-implementation": "^2",
"psr/log-implementation": "^3",
"psr/http-server-middleware-implementation": "^1",
"psr/http-server-handler-implementation": "^1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/var-dumper": "^5",
"twig/twig": "^3"
},
"autoload-dev": {
"psr-4": {
"Tests\\Koded\\Framework\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"suggest": {
"ext-intl": "Required for I18n and localization with intl module",
"ext-gettext": "Required for I18n and gettext support",
"ext-zlib": "Required for various development operations"
},
"minimum-stability": "dev",
"prefer-stable": true
}