Skip to content

Commit e1ef311

Browse files
committed
Move cache files to the cache directory
1 parent bf40660 commit e1ef311

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

.gitignore

+4-8
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@
22
/vendor/
33
composer.lock
44

5-
# CSFixer
6-
.php-cs-fixer.cache
7-
85
# PHPUnit
9-
.phpunit.cache
106
coverage.xml
117

12-
# PHPStan
13-
.phpstan.result.cache
14-
15-
# JetBrains
8+
# IDE
169
.idea
10+
11+
# Local cache directory
12+
/cache

.php-cs-fixer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
PhpCsFixer\Finder::create()
2727
->exclude('vendor')
2828
->in(__DIR__)
29-
);
29+
)->setCacheFile('./cache/.php-cs-fixer.cache');

phpstan.neon

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
parameters:
2-
tmpDir: .phpstan.result.cache
2+
tmpDir: ./cache/.phpstan.result.cache
33
level: 9
44
paths:
55
- src

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
failOnSkipped="true"
1111
beStrictAboutOutputDuringTests="true"
1212
beStrictAboutChangesToGlobalState="true"
13-
cacheDirectory=".phpunit.cache"
13+
cacheDirectory="./cache/.phpunit.result.cache"
1414
requireCoverageMetadata="true"
1515
>
1616
<testsuites>

0 commit comments

Comments
 (0)