diff --git a/.gitattributes b/.gitattributes index 7333620..90a4e33 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,38 +1,24 @@ +# Normaliza los saltos de línea en diferentes SO * text=auto eol=lf +# Reglas para archivos específicos *.blade.php diff=html *.css diff=css *.html diff=html *.md diff=markdown *.php diff=php +# Evitar que estos archivos se exporten con Composer create-project /.github export-ignore -CHANGELOG.md export-ignore -.styleci.yml export-ignore - -# Ignorar archivos de configuración y herramientas de desarrollo +/.gitignore export-ignore +/.git export-ignore +.gitattributes export-ignore .editorconfig export-ignore .prettierrc.json export-ignore .prettierignore export-ignore .eslintrc.json export-ignore - -# Ignorar node_modules y dependencias locales -node_modules/ export-ignore -vendor/ export-ignore - -# Ignorar archivos de build -npm-debug.log export-ignore - -# Ignorar carpetas de logs y caché -storage/logs/ export-ignore -storage/framework/ export-ignore - -# Ignorar carpetas de compilación de frontend -public/build/ export-ignore -dist/ export-ignore - -# Ignorar archivos de CI/CD -.github/ export-ignore -.gitlab-ci.yml export-ignore -.vscode/ export-ignore -.idea/ export-ignore +CHANGELOG.md export-ignore +CONTRIBUTING.md export-ignore +README.md export-ignore +composer.lock export-ignore +package-lock.json export-ignore diff --git a/composer.json b/composer.json index b8f03f8..95108b6 100644 --- a/composer.json +++ b/composer.json @@ -6,8 +6,8 @@ "license": "MIT", "require": { "php": "^8.2", - "koneko/laravel-sat-catalogs": "@dev", - "koneko/laravel-vuexy-admin": "@dev", + "koneko/laravel-sat-catalogs": "dev-main", + "koneko/laravel-vuexy-admin": "dev-main", "laravel/framework": "^11.31", "spatie/pdf-to-text": "^1.54" },