Skip to content

Commit 58cccd2

Browse files
committed
🚿
1 parent 209fab3 commit 58cccd2

File tree

2 files changed

+40
-6
lines changed

2 files changed

+40
-6
lines changed

.gitattributes

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/.build export-ignore
2+
/.config export-ignore
3+
/.github export-ignore
4+
/.idea export-ignore
5+
/.phan export-ignore
6+
/.phpdoc export-ignore
7+
/docs export-ignore
8+
/examples export-ignore
9+
/public export-ignore
10+
/tests export-ignore
11+
/.editorconfig export-ignore
12+
/.gitattributes export-ignore
13+
/.gitignore export-ignore
14+
/.readthedocs.yml export-ignore
15+
/composer.lock export-ignore
16+
/phpcs.xml.dist export-ignore
17+
/phpdoc.xml.dist export-ignore
18+
/phpmd.xml.dist export-ignore
19+
/phpunit.xml.dist export-ignore
20+
/phpstan.dist.neon export-ignore
21+
/phpstan-baseline.neon export-ignore
22+
23+
*.php diff=php

.gitignore

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
1-
composer.lock
2-
vendor
3-
.build
4-
.idea
5-
.vagrant
1+
# IDE - IntelliJ
2+
.idea/*
3+
# Keep the code styles.
4+
!.idea/codeStyles
5+
.idea/codeStyles/*
6+
!.idea/codeStyles/Project.xml
7+
!.idea/codeStyles/codeStyleConfig.xml
8+
# Keep the inspection levels
9+
!.idea/inspectionProfiles
10+
.idea/inspectionProfiles/*
11+
!.idea/inspectionProfiles/Project_Default.xml
12+
13+
# project stuff
14+
.build/*
615
config/.env
7-
storage
16+
vendor/*
17+
storage/*
18+
composer.lock
819
phpunit.xml

0 commit comments

Comments
 (0)