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 7660882 commit 0ae8fe6Copy full SHA for 0ae8fe6
.gitignore
@@ -6,7 +6,7 @@ coverage
6
.project
7
.settings
8
.php_cs
9
-.php_cs.cache
+.php-cs-fixer.cache
10
composer.lock
11
docs-api
12
phpunit.xml
.php-cs-fixer.dist.php
@@ -2,7 +2,7 @@
2
3
$finder = new PhpCsFixer\Finder();
4
$config = new PhpCsFixer\Config('json-schema');
5
-$finder->in(__DIR__);
+$finder->in([__DIR__ . '/src', __DIR__ . '/tests']);
/* Based on ^2.1 of php-cs-fixer */
$config
composer.json
@@ -33,7 +33,7 @@
33
"icecave/parity": "^3.0"
34
},
35
"require-dev": {
36
- "friendsofphp/php-cs-fixer": "~2.2.20 || ~2.19.0",
+ "friendsofphp/php-cs-fixer": "3.3.0",
37
"json-schema/json-schema-test-suite": "1.2.0",
38
"phpunit/phpunit": "^8.5",
39
"phpspec/prophecy": "^1.19",
0 commit comments