-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
44 lines (43 loc) · 1.13 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
{
"name": "devsavage/slim-3-authentication",
"description": "An authentication system using the Slim Framework.",
"type": "project",
"version": "2.0.0",
"keywords": ["authentication","slim-3", "slim3", "slimframework", "slim-framework"],
"homepage": "https://github.com/devsavage/slim-3-authentication",
"license": "MIT",
"authors": [
{
"name": "Savage",
"email": "[email protected]",
"homepage": "https://savagedev.io",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"App\\": "app/App",
"Migration\\": "app/Migration"
},
"files": [
"app/helpers.php",
"phinx.php"
]
},
"require": {
"php": ">=5.6.0 ^7.2",
"slim/slim": "^3.0",
"illuminate/database": "^5.2",
"illuminate/pagination": "^5.2",
"slim/twig-view": "^2.0",
"slim/flash": "^0.1.0",
"slim/csrf": "^0.6.0",
"ircmaxell/random-lib": "^1.1",
"phpmailer/phpmailer": "^5.2",
"vlucas/phpdotenv": "^3",
"hassankhan/config": "^0.10.0",
"symfony/console": "^3.1",
"google/recaptcha": "~1.1",
"robmorgan/phinx": "^0.10.7"
}
}