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
46 changes: 19 additions & 27 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,30 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto eol=lf

# ─── Diff drivers ────────────────────────────────────────────
*.php diff=php
*.md diff=markdown
*.php text diff=php

# ─── Force LF ────────────────────────────────────────────────
*.sh text eol=lf
Makefile text eol=lf

# ─── Generated (skip diff and GitHub stats) ──────────────────
composer.lock -diff linguist-generated

# ─── Export ignore (excluded from dist archive) ──────────────
/tests export-ignore
/vendor export-ignore
/rules export-ignore

/.github export-ignore
/.gitignore export-ignore
/.gitattributes export-ignore

/CLAUDE.md export-ignore
/LICENSE export-ignore
/Makefile export-ignore
/README.md export-ignore
/phpunit.xml export-ignore
/phpstan.neon.dist export-ignore
/infection.json.dist export-ignore
# Dev-only — excluded from the Packagist tarball
/.github export-ignore
/tests export-ignore
/.claude export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/phpunit.xml export-ignore
/phpunit.xml.dist export-ignore
/phpstan.neon export-ignore
/phpstan.neon.dist export-ignore
/phpcs.xml export-ignore
/phpcs.xml.dist export-ignore
/infection.json export-ignore
/infection.json.dist export-ignore
/Makefile export-ignore
/CONTRIBUTING.md export-ignore
/CHANGES.md export-ignore
23 changes: 18 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
.idea
# Agent/IDE
.claude/
.idea/
.vscode/
.cursor/

vendor
report
# Composer
/vendor/
composer.lock

*.lock
.phpunit.*
# PHPUnit / coverage
.phpunit.cache/
.phpunit.result.cache
report/
coverage/
build/

# OS
.DS_Store
Thumbs.db
Loading