From 7ab36a94cf83e530f1f1a8518383366f1d21a175 Mon Sep 17 00:00:00 2001 From: DavidDevGt Date: Sun, 10 Nov 2024 03:18:31 -0600 Subject: [PATCH] configurar gitignore y agregar autoload --- .gitignore | 1 + composer.json | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 8b453d0..6da860a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ vendor .env +*.log \ No newline at end of file diff --git a/composer.json b/composer.json index 8162648..facd50c 100644 --- a/composer.json +++ b/composer.json @@ -4,5 +4,10 @@ "vlucas/phpdotenv": "^5.6", "symfony/http-foundation": "^7.1", "catfan/medoo": "^2.1" + }, + "autoload": { + "psr-4": { + "App\\": "app/" + } } }