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 7e81a49 commit acb4d94Copy full SHA for acb4d94
.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.dist
@@ -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
@@ -30,7 +30,7 @@
30
"php": ">=7.1"
31
},
32
"require-dev": {
33
- "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
+ "friendsofphp/php-cs-fixer": "3.3.0",
34
"json-schema/json-schema-test-suite": "1.2.0",
35
"phpunit/phpunit": "^4.8.35"
36
0 commit comments