Skip to content

Commit

Permalink
build: add Git Attributes (#33)
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 authored Nov 30, 2023
1 parent 62861aa commit 7f66058
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
* text=auto

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

# Ignore all test and documentation with "export-ignore".
/.gitattributes export-ignore
/.github export-ignore
/.gitignore export-ignore
/phpunit.xml.dist export-ignore
/tests export-ignore

0 comments on commit 7f66058

Please sign in to comment.