We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cecb0c0 commit 4feb4d9Copy full SHA for 4feb4d9
.gitignore
@@ -1,12 +1,7 @@
1
-<<<<<<< HEAD
2
-composer.phar
3
-/vendor/
4
-
5
-# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
6
-# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
7
-# composer.lock
8
-=======
9
/vendor/
10
data.json
11
index.php
12
->>>>>>> 2c4b1f2 (Json db)
+.phpunit.cache/
+.env
+/var/
+/data/*.json
phpstan.dist.neon
@@ -0,0 +1,13 @@
+parameters:
+ level: max
+ paths:
+ - src
+ excludePaths:
+ - tests
+ tmpDir: var/cache/phpstan
+ bootstrapFiles:
+ - vendor/autoload.php
+ # checkMissingIterableValueType: true
+ # checkGenericClassInNonGenericObjectType: true
+ checkUnionTypes: true
13
+ reportUnmatchedIgnoredErrors: true
0 commit comments