-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
29 lines (25 loc) · 870 Bytes
/
.gitignore
File metadata and controls
29 lines (25 loc) · 870 Bytes
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
/vendor/
/var/
/.php-cs-fixer.cache
/untracked/
*.log
.phpunit.result.cache
# Generator test output now goes to var/test-generated/ (covered by /var/ above)
# Symfony test kernel writes cache/logs to ./var/cache/symfony/ and ./var/logs/symfony/,
# but keep this exclusion as a safety net in case it's ever reverted
src/Bundle/OpenApiBundle/Tests/Resources/var/
# Claude Code
.claude/hooks-daemon/
.claude/worktrees/
qaConfig/.qa-lock/
# BEGIN php-qa-ci managed QA runtime excludes — do not edit
# These patterns ensure QA tool runtime caches are never committed,
# regardless of where they happen to appear in the project tree.
# Managed by vendor/lts/php-qa-ci/includes/generic/prepareDirectories.inc.bash
**/.phpunit.cache/
**/.qa-lock/
**/.php-cs-fixer.cache
**/.php_cs.cache
**/.rector.cache/
**/phpstan-result.json
# END php-qa-ci managed QA runtime excludes