-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.21 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
{
"name": "genial-framework/skeleton-application",
"description": "A powerful MVC framework design for speed and flexibility.",
"keywords": [
"php7-framework",
"elegant-mvc-framework",
"secure-coding",
"skeleton-application"
],
"license": "BSD 3-Clause",
"authors": [
{
"name": "Nicholas English",
"email": "nenglish0820@outlook.com",
"homepage": "https://github.com/Nenglish7"
}
],
"autoload": {
"psr-4": {
"Genial\\Controller\\": "./app/Controllers",
"Genial\\Module": "./app/Modules",
"Genial\\Engine": "./app/Engine"
},
"files": [
"./bin/version.php",
"./bin/functions.php",
"./bin/check.php"
]
},
"require": {
"php": "^7.2",
"psr/log": "*",
"symfony/console": "^4",
"symfony/process": "^4",
"symfony/event-dispatcher": "^4",
"symfony/lock": "^4",
"ramsey/uuid": "^3",
"moontoast/math": "^1",
"paragonie/sodium_compat": "^1",
"genial-framework/responsive": "^1",
"genial-framework/routing": "^1",
"genial-framework/validator": "^1",
"genial-framework/session": "^1",
"genial-framework/authentication": "^1",
"genial-framework/core": "^1",
"genial-framework/encryption": "^1",
"genial-framework/form": "^1",
"genial-framework/dependency-injection": "^1",
"genial-framework/sodium_optimizer": "^1",
"genial-framework/key-manager": "^1",
"genial-framework/database": "^1",
"genial-framework/escaper": "^1",
"genial-framework/csrf": "^1",
"genial-framework/xss-protect": "^1",
"genial-framework/template-engine": "^1",
"genial-framework/environment": "^1",
"genial-framework/logging": "^1",
"genial-framework/debug": "^1",
"genial-framework/config": "^1"
},
"require-dev": {
"phpunit/phpunit": "^7",
"vimeo/psalm": "^1"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true
}