-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.93 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
{
"name": "symbiotic/full",
"description": "Complete assembly of the SymbioticPHP framework with a cached container and optimized core services",
"license": ["BSD-3-Clause"],
"version": "1.4.2.2",
"homepage": "https://symbioticphp.com",
"authors": [
{
"name": "Surkov Sergey",
"role": "Developer"
}
],
"keywords": [
"symbiotic",
"composer apps framework",
"symbiotic web"
],
"require": {
"php": ">=8.0",
"symbiotic/micro": "^1.4",
"symbiotic/database": "^1.4"
},
"autoload": {
"psr-4": {
"Symbiotic\\Auth\\Authenticator\\": "src/Auth/Authenticator/",
"Symbiotic\\Container\\": "src/Container/",
"Symbiotic\\Bootstrap\\": "src/Bootstrap/",
"Symbiotic\\Apps\\": "src/Apps/",
"Symbiotic\\Event\\": "src/Event/",
"Symbiotic\\Core\\": "src/Core/",
"Symbiotic\\Packages\\": "src/Packages/",
"Symbiotic\\Routing\\": "src/Routing/",
"Symbiotic\\Session\\": "src/Session/"
}
},
"extra": {
"symbiotic": {
"providers": [
"Symbiotic\\Auth\\Authenticator\\SessionAuthProvider",
"Symbiotic\\Routing\\SettlementsRoutingProvider",
"Symbiotic\\Routing\\CacheRoutingProvider",
"Symbiotic\\Session\\FilesystemProvider"
],
"providers_exclude": [
"\\Symbiotic\\Routing\\Provider"
],
"bootstrappers": [
"Symbiotic\\Bootstrap\\CloningExtendersBootstrap",
"Symbiotic\\Bootstrap\\SettlementsPreloadMiddlewareBootstrap"
]
}
},
"suggest": {
"symbiotic/eloquent": "Encapsulated Laravel Eloquent ORM for Symbiotic",
"symbiotic/full-single": "Full build in single file",
"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",
"symbiotic/workerman": "Road Runner with Symbiotic"
}
}