Skip to content

Commit

Permalink
feat: add Git Attributes (#191)
Browse files Browse the repository at this point in the history
This adds a `.gitattributes` file to exclude tests and other unnecessary files from production releases.
  • Loading branch information
owenvoke committed Nov 30, 2023
1 parent 71446bf commit b7f51ea
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
* text=auto

# Path-based git attributes
# https://git-scm.com/docs/gitattributes

# Ignore all test and documentation with "export-ignore".
/.editorconfig export-ignore
/.gitattributes export-ignore
/.github export-ignore
/.gitignore export-ignore
/.styleci.yml export-ignore
/CODE_OF_CONDUCT.md export-ignore
/phpunit.xml export-ignore
/tests export-ignore

0 comments on commit b7f51ea

Please sign in to comment.