Skip to content

Commit

Permalink
feat: add Git Attributes (#52)
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 Mar 7, 2024
1 parent 39adced commit 35ea59b
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 export-ignore
/tests export-ignore

0 comments on commit 35ea59b

Please sign in to comment.