|
1 | | -# Composer |
| 1 | +# ============================================================================== |
| 2 | +# KaririCode DevKit - .gitignore |
| 3 | +# ============================================================================== |
| 4 | +# Mantém o repositório limpo, rastreando apenas código-fonte e configs relevantes |
| 5 | +# ============================================================================== |
| 6 | + |
| 7 | +# ------------------------------------------------------------------------------ |
| 8 | +# Composer / Vendors |
| 9 | +# ------------------------------------------------------------------------------ |
2 | 10 | /vendor/ |
3 | 11 | composer.lock |
| 12 | +/composer.phar |
| 13 | + |
| 14 | +# ------------------------------------------------------------------------------ |
| 15 | +# Environment Files |
| 16 | +# ------------------------------------------------------------------------------ |
| 17 | +.env |
| 18 | +.env.local |
| 19 | +.env.*.local |
| 20 | +/.envrc |
| 21 | +/.envrc.d/ |
| 22 | + |
| 23 | +# ------------------------------------------------------------------------------ |
| 24 | +# Build / Distribution / Packaging |
| 25 | +# ------------------------------------------------------------------------------ |
| 26 | +/build/ |
| 27 | +/dist/ |
| 28 | +/tmp/ |
| 29 | +/var/tmp/ |
| 30 | +/*.phar |
4 | 31 |
|
| 32 | +# ------------------------------------------------------------------------------ |
| 33 | +# QA & Code Quality Tools |
| 34 | +# ------------------------------------------------------------------------------ |
5 | 35 | # PHPUnit |
6 | 36 | .phpunit.cache/ |
7 | 37 | .phpunit.result.cache |
8 | 38 | /coverage/ |
9 | 39 | /reports/ |
10 | 40 |
|
11 | 41 | # PHPStan |
| 42 | +/.phpstan.cache |
12 | 43 | /var/cache/phpstan/ |
13 | | -.phpstan.cache |
14 | 44 |
|
15 | 45 | # Psalm |
16 | | -psalm-baseline.xml |
17 | | -.psalm/ |
| 46 | +/.psalm/ |
| 47 | +/psalm-baseline.xml |
18 | 48 |
|
19 | 49 | # PHP-CS-Fixer |
20 | | -.php-cs-fixer.cache |
| 50 | +/.php-cs-fixer.cache |
21 | 51 |
|
22 | | -# Infection |
| 52 | +# Infection (mutation testing) |
23 | 53 | /var/cache/infection/ |
24 | | -infection.log |
25 | | -infection.html |
26 | | -infection-summary.log |
27 | | -infection-debug.log |
28 | | -infection-per-mutator.md |
| 54 | +/infection*.{log,html,md} |
| 55 | +/infection-debug.log |
| 56 | +/infection-summary.log |
29 | 57 |
|
30 | 58 | # PHPBench |
31 | | -.phpbench/ |
32 | | -benchmarks/ |
| 59 | +/.phpbench/ |
| 60 | +/benchmarks/ |
| 61 | + |
| 62 | +# Rector / PHPMD / CodeSniffer |
| 63 | +/.rector.php |
| 64 | +/.phpcs-cache |
| 65 | +/.phpmd-cache |
| 66 | +/.phpstan-baseline.neon |
| 67 | +/.rector-cache |
| 68 | + |
| 69 | +# ------------------------------------------------------------------------------ |
| 70 | +# Logs |
| 71 | +# ------------------------------------------------------------------------------ |
| 72 | +/*.log |
| 73 | +/logs/ |
| 74 | +/storage/logs/ |
| 75 | +/var/log/ |
| 76 | +/*.pid |
| 77 | + |
| 78 | +# ------------------------------------------------------------------------------ |
| 79 | +# Docker / WSL / CI |
| 80 | +# ------------------------------------------------------------------------------ |
| 81 | +/.docker/ |
| 82 | +/docker-compose.override.yml |
| 83 | +/.wslconfig |
| 84 | +/.wsl2/ |
| 85 | +.cache/ |
| 86 | +.dockerignore |
33 | 87 |
|
34 | | -# IDEs |
| 88 | +# ------------------------------------------------------------------------------ |
| 89 | +# IDEs / Editors / OS |
| 90 | +# ------------------------------------------------------------------------------ |
| 91 | +# JetBrains / VSCode |
35 | 92 | /.idea/ |
| 93 | +/.vscode/ |
| 94 | +*.code-workspace |
| 95 | + |
| 96 | +# Vim / Emacs / Misc |
| 97 | +*~ |
36 | 98 | *.swp |
37 | 99 | *.swo |
38 | | -*~ |
| 100 | + |
| 101 | +# macOS / Windows |
39 | 102 | .DS_Store |
| 103 | +Thumbs.db |
| 104 | +Desktop.ini |
40 | 105 |
|
41 | | -# Build artifacts |
42 | | -/build/ |
43 | | -/dist/ |
| 106 | +# ------------------------------------------------------------------------------ |
| 107 | +# Node / Frontend (quando integrados ao DevKit) |
| 108 | +# ------------------------------------------------------------------------------ |
| 109 | +node_modules/ |
| 110 | +npm-debug.log* |
| 111 | +yarn-debug.log* |
| 112 | +yarn-error.log* |
| 113 | +.pnpm-debug.log* |
44 | 114 |
|
45 | | -# Logs |
46 | | -*.log |
| 115 | +# ------------------------------------------------------------------------------ |
| 116 | +# Backups / Artifacts |
| 117 | +# ------------------------------------------------------------------------------ |
| 118 | +*.bak |
| 119 | +*.old |
| 120 | +*.orig |
| 121 | +*.rej |
| 122 | +*.tmp |
| 123 | + |
| 124 | +# ------------------------------------------------------------------------------ |
| 125 | +# Cache geral |
| 126 | +# ------------------------------------------------------------------------------ |
| 127 | +.cache/ |
| 128 | +var/cache/ |
0 commit comments