We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 505bd43 commit 9eff8a2Copy full SHA for 9eff8a2
composer.json
@@ -52,5 +52,10 @@
52
"TestApp\\": "tests/test_app/TestApp",
53
"Cake\\Test\\Fixture\\": "vendor/cakephp/cakephp/tests/Fixture"
54
}
55
+ },
56
+ "config": {
57
+ "allow-plugins": {
58
+ "dealerdirect/phpcodesniffer-composer-installer": true
59
+ }
60
61
tests/bootstrap.php
@@ -1,6 +1,8 @@
1
<?php
2
declare(strict_types=1);
3
4
+use Cake\Core\Configure;
5
+
6
/**
7
* Test suite bootstrap.
8
*
@@ -30,3 +32,7 @@
30
32
31
33
34
require $root . '/vendor/cakephp/cakephp/tests/bootstrap.php';
35
36
+Configure::write('Error.ignoredDeprecationPaths', [
37
+ 'src/TestSuite/Fixture/FixtureInjector.php',
38
+]);
0 commit comments