-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (50 loc) · 1.44 KB
/
composer.json
File metadata and controls
51 lines (50 loc) · 1.44 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
{
"name": "symbiotic/micro",
"description": "SymbioticPHP framework for mini applications, supports plugins and inheritance of containers of parent applications.",
"license": ["BSD-3-Clause"],
"homepage": "https://symbioticphp.com",
"authors": [
{
"name": "Sergei Surkov",
"role": "Developer"
}
],
"version": "1.4.2.4",
"type": "library",
"keywords": [
"SymbioticPHP",
"Symbiotic framework",
"micro framework"
],
"require": {
"php": "^8.0",
"ext-mbstring":"*",
"ext-json":"*",
"psr/container": "^1.0|^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/simple-cache": "^1.0",
"nyholm/psr7": "1.5.1",
"symbiotic/http-response-mutable": "^1.4",
"symbiotic/http-cookie": "^1.4",
"symbiotic/packages-loader-filesytem": "^1.4",
"symbiotic/event": "^1.4",
"symbiotic/ui_http_kernel": "1.4.*"
},
"require-dev": {
"symbiotic/tests-micro": "1.4.1"
},
"autoload": {
"psr-4": {
"Symbiotic\\": "src/"
},
"files": ["src/helpers.php"]
},
"suggest": {
"symbiotic/full": "Full version of the framework",
"symbiotic/eloquent": "Encapsulated Laravel Eloquent ORM for Symbiotic",
"symbiotic/develop": "App for developers",
"symbiotic/auth-login": "Basic authorization for the framework",
"symbiotic/settings-app": "Application for editing kernel settings, file systems and application packages"
}
}