-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
66 lines (66 loc) · 1.75 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
{
"name": "nenglish7/superbcms",
"type": "project",
"keywords": [
"php-project",
"login-system",
"user-management",
"user-registration",
"content-management-system",
"secure-by-default",
"secure-coding",
"php-security",
"libsodium-php",
"encrypted-cookies",
"php-dispatching",
"ext-sodium",
"routing",
"controllers",
"php-di",
"php7-0",
"php7-1",
"php7-2"
],
"description": "A fast and secure by default content management system.",
"homepage": "https://github.com/Nenglish7/SuperBCMS",
"license": "MIT",
"authors": [
{
"name": "Nicholas English",
"homepage": "https://github.com/Nenglish7",
"email": "[email protected]",
"role": "Owner/Developer"
}
],
"require": {
"php": "^7",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/console": "^3|^4",
"symfony/process": "^3|^4",
"paragonie/halite": "^3|^4.",
"paragonie/csp-builder": "^2",
"paragonie/sodium_compat": "*",
"psr/container": "*",
"psr/log": "*"
},
"autoload": {
"psr-4": {
"Nenglish7\\Engine\\": "./src/engine",
"Nenglish7\\App\\": "./src/app"
},
"files": ["./server.php"]
},
"suggest": {
"egulias/email-validator": "Provides strict email validation. This is recommended."
},
"require-dev": {
"phpunit/phpunit": "^6"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}