-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.3 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
{
"name": "fernandocalmet/slim4-auth-boilerplate",
"description": "Aplicación con Autenticaciones, Validaciones, Migraciones SQL, Plantillas Twig con PHP y Slim4",
"type": "project",
"authors": [
{
"name": "Fernando Calmet",
"email": "[email protected]",
"homepage": "https://www.github.com/fernandocalmet"
}
],
"require": {
"php-di/slim-bridge": "3.4.0",
"symfony/var-dumper": "7.0.3",
"slim/slim": "4.12.0",
"slim/twig-view": "3.3.0",
"robmorgan/phinx": "0.16.0",
"illuminate/database": "10.44.0",
"illuminate/validation": "10.44.0",
"slim/flash": "0.4.0",
"google/recaptcha": "1.3.0",
"slim/csrf": "1.4.0",
"slim/psr7": "1.6.1"
},
"require-dev": {
"phpunit/phpunit": "11.0.3"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout" : 0
},
"scripts": {
"start": "php -S localhost:8080",
"create": "php phinx create",
"migrate": "php phinx migrate",
"migrate one": "php phinx -e development -t",
"test": "phpunit"
}
}