Skip to content

Commit

Permalink
chore: add autoload.exclude-from-classmap to suppress warnings
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kenjis committed Jun 12, 2024
1 parent a13f54d commit 04c4d4b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@
"CodeIgniter\\": "system/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
"**/Database/Migrations/**",
"system/ThirdParty/**",
"tests/system/Config/fixtures/**"
]
},
"autoload-dev": {
Expand Down

0 comments on commit 04c4d4b

Please sign in to comment.