We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49a236 commit 04fb83dCopy full SHA for 04fb83d
.gitignore
@@ -0,0 +1,43 @@
1
+# Composer dependencies
2
+/vendor/
3
+/composer.lock
4
+/composer.phar
5
+
6
+# PHPUnit
7
+/.phpunit.result.cache
8
+/phpunit.xml
9
+/coverage/
10
11
+# PHP-CS-Fixer
12
+/.php-cs-fixer.cache
13
+/.php-cs-fixer.php
14
15
+# Psalm
16
+/psalm.xml
17
+/.psalm/
18
19
+# IDE & System files
20
+/.idea/
21
+/.vscode/
22
+/.phpstorm.meta.php
23
+/_ide_helper.php
24
+/.DS_Store
25
+/Thumbs.db
26
27
+# Operating System Files
28
+.DS_Store
29
+.DS_Store?
30
+._*
31
+.Spotlight-V100
32
+.Trashes
33
+ehthumbs.db
34
+Thumbs.db
35
36
+# Project specific
37
+/build/
38
+/logs/
39
+*.log
40
+*.cache
41
+*.bak
42
+*.swp
43
+*~
0 commit comments