Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
212 changes: 0 additions & 212 deletions .env

This file was deleted.

122 changes: 102 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,46 +1,128 @@
# Composer
# ==============================================================================
# KaririCode DevKit - .gitignore
# ==============================================================================
# Mantém o repositório limpo, rastreando apenas código-fonte e configs relevantes
# ==============================================================================

# ------------------------------------------------------------------------------
# Composer / Vendors
# ------------------------------------------------------------------------------
/vendor/
composer.lock
/composer.phar

# ------------------------------------------------------------------------------
# Environment Files
# ------------------------------------------------------------------------------
.env
.env.local
.env.*.local
/.envrc
/.envrc.d/

# ------------------------------------------------------------------------------
# Build / Distribution / Packaging
# ------------------------------------------------------------------------------
/build/
/dist/
/tmp/
/var/tmp/
/*.phar

# ------------------------------------------------------------------------------
# QA & Code Quality Tools
# ------------------------------------------------------------------------------
# PHPUnit
.phpunit.cache/
.phpunit.result.cache
/coverage/
/reports/

# PHPStan
/.phpstan.cache
/var/cache/phpstan/
.phpstan.cache

# Psalm
psalm-baseline.xml
.psalm/
/.psalm/
/psalm-baseline.xml

# PHP-CS-Fixer
.php-cs-fixer.cache
/.php-cs-fixer.cache

# Infection
# Infection (mutation testing)
/var/cache/infection/
infection.log
infection.html
infection-summary.log
infection-debug.log
infection-per-mutator.md
/infection*.{log,html,md}
/infection-debug.log
/infection-summary.log

# PHPBench
.phpbench/
benchmarks/
/.phpbench/
/benchmarks/

# Rector / PHPMD / CodeSniffer
/.rector.php
/.phpcs-cache
/.phpmd-cache
/.phpstan-baseline.neon
/.rector-cache

# ------------------------------------------------------------------------------
# Logs
# ------------------------------------------------------------------------------
/*.log
/logs/
/storage/logs/
/var/log/
/*.pid

# ------------------------------------------------------------------------------
# Docker / WSL / CI
# ------------------------------------------------------------------------------
/.docker/
/docker-compose.override.yml
/.wslconfig
/.wsl2/
.cache/
.dockerignore

# IDEs
# ------------------------------------------------------------------------------
# IDEs / Editors / OS
# ------------------------------------------------------------------------------
# JetBrains / VSCode
/.idea/
/.vscode/
*.code-workspace

# Vim / Emacs / Misc
*~
*.swp
*.swo
*~

# macOS / Windows
.DS_Store
Thumbs.db
Desktop.ini

# Build artifacts
/build/
/dist/
# ------------------------------------------------------------------------------
# Node / Frontend (quando integrados ao DevKit)
# ------------------------------------------------------------------------------
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# Logs
*.log
# ------------------------------------------------------------------------------
# Backups / Artifacts
# ------------------------------------------------------------------------------
*.bak
*.old
*.orig
*.rej
*.tmp

# ------------------------------------------------------------------------------
# Cache geral
# ------------------------------------------------------------------------------
.cache/
var/cache/
Loading