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