-
Notifications
You must be signed in to change notification settings - Fork 47
/
composer.json
44 lines (44 loc) · 1.2 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
{
"keywords": ["Php", "Slim 4", "Php Authentication", "Slim 4 Authentication"],
"require": {
"slim/slim": "4.*",
"slim/psr7": "^1.0",
"php-di/php-di": "^6.0",
"jenssegers/blade": "^1.2",
"php": "^7.4",
"ext-curl": "*",
"ext-json": "*",
"php-di/slim-bridge": "^3.0",
"illuminate/support": "^7.0.0",
"illuminate/database": "^7.4",
"zeuxisoo/slim-whoops": "^0.7.2",
"vlucas/phpdotenv": "^4.1",
"robmorgan/phinx": "^0.11.5",
"fzaninotto/faker": "^1.9",
"slim/csrf": "^1.0",
"illuminate/validation": "^7.6",
"swiftmailer/swiftmailer": "^6.0",
"guzzlehttp/guzzle": "^6.5",
"illuminate/mail": "^7.7"
},
"autoload": {
"files": [
"./app/helpers.php"
],
"classmap": [
"./database/factories/support"
],
"psr-4": {
"App\\": "app",
"Boot\\": "bootstrap"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"require-dev": {
"laravel/homestead": "^10.7"
}
}