-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
33 lines (28 loc) · 1.11 KB
/
.gitattributes
File metadata and controls
33 lines (28 loc) · 1.11 KB
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
28
29
30
31
32
33
# Normalize line endings across the repo
* text=auto eol=lf
# Keep only what's needed in the dist ZIP: src/, composer.json, LICENSE, README(+CHANGELOG)
# Exclude dev/CI/IDE noise from Packagist/GitHub archives
/.github export-ignore
/tests export-ignore
/docs export-ignore
/dev export-ignore
/examples export-ignore
# Build/QA/CI artifacts
/phpunit.xml* export-ignore
/.phpunit.result.cache export-ignore
/phpstan*.neon* export-ignore
/psalm*.xml* export-ignore
/.php-cs-fixer.php export-ignore
/.php-cs-fixer.dist.php export-ignore
/Makefile export-ignore
# Editor/IDE files
/.editorconfig export-ignore
/.gitignore export-ignore
/.gitattributes export-ignore
/.idea export-ignore
/.vscode export-ignore
# Composer lock (usually not shipped with libraries)
composer.lock export-ignore
# If you happen to have these (harmless to list even if absent)
/scripts export-ignore
/stubs export-ignore