-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.gitattributes
More file actions
27 lines (22 loc) · 866 Bytes
/
.gitattributes
File metadata and controls
27 lines (22 loc) · 866 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
# Line-ending normalization for text files.
* text=auto
# PHP-aware hunk headers in `git diff`.
*.php diff=php
# Binary files keep their bytes.
*.http binary
*.gpg binary
# Default: nothing is included in the `composer archive` of testo/testo.
# Re-include only the files that actually belong to the root metapackage below.
* export-ignore
# Top-level documentation and the manifest itself.
/composer.json -export-ignore
/LICENSE.md -export-ignore
/README.md -export-ignore
/CHANGELOG.md -export-ignore
# Core source code (`Testo\` namespace) and the bundled `internal/container`
# (mapped through composer.json `replace`). The `bin/testo` CLI entry point
# now ships with the `testo/bridge-symfony-console` package.
/core -export-ignore
/core/** -export-ignore
/internal -export-ignore
/internal/** -export-ignore