Skip to content

Commit 04c4d4b

Browse files
committed
chore: add autoload.exclude-from-classmap to suppress warnings
E.g., Class Laminas\Escaper\Escaper located in ./system/ThirdParty/Escaper/Escaper.php does not comply with psr-4 autoloading standard (rule: CodeIgniter\ => ./system). Skipping.
1 parent a13f54d commit 04c4d4b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@
6464
"CodeIgniter\\": "system/"
6565
},
6666
"exclude-from-classmap": [
67-
"**/Database/Migrations/**"
67+
"**/Database/Migrations/**",
68+
"system/ThirdParty/**",
69+
"tests/system/Config/fixtures/**"
6870
]
6971
},
7072
"autoload-dev": {

0 commit comments

Comments
 (0)