Skip to content

Commit a8b1ef3

Browse files
author
Kirill Nesmeyanov
committed
Improve configuration files
1 parent d4c2577 commit a8b1ef3

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.php-cs-fixer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
'syntax' => 'short',
1313
],
1414
])
15-
->setCacheFile(__DIR__ . '/vendor/.php-cs-fixer.cache')
15+
->setCacheFile(__DIR__ . '/vendor/.cache.php-cs-fixer')
1616
->setFinder($files);

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
stopOnFailure="false"
77
processIsolation="false"
88
bootstrap="vendor/autoload.php"
9-
cacheDirectory="vendor/.phpunit.cache"
9+
cacheDirectory="vendor/.cache.phpunit"
1010
backupStaticProperties="false"
1111
>
1212
<testsuites>

psalm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
88
xmlns="https://getpsalm.org/schema/config"
99
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
10+
cacheDirectory="vendor/.cache.psalm"
1011
>
1112
<projectFiles>
1213
<directory name="src" />
1314
<ignoreFiles>
14-
<directory name="resources" />
1515
<directory name="vendor" />
1616
</ignoreFiles>
1717
</projectFiles>

rector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
return static function (RectorConfig $config): void {
1919
$config->paths([__DIR__ . '/src']);
20+
$config->cacheDirectory(__DIR__ . '/vendor/.cache.rector');
2021

2122
$config->sets([
2223
LevelSetList::UP_TO_PHP_81,

0 commit comments

Comments
 (0)