0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-12-22 16:31:53 +00:00

Exclude language classes from autoloader optimization (#236)

These classes are autoloaded by a custom autoloader
This commit is contained in:
Jordi Boggiano 2019-10-31 18:42:00 +01:00 committed by Edward Z. Yang
parent a617e55bc6
commit 4faca32a4d

View File

@ -20,6 +20,9 @@
}, },
"autoload": { "autoload": {
"psr-0": { "HTMLPurifier": "library/" }, "psr-0": { "HTMLPurifier": "library/" },
"files": ["library/HTMLPurifier.composer.php"] "files": ["library/HTMLPurifier.composer.php"],
"exclude-from-classmap": [
"/library/HTMLPurifier/Language/"
]
} }
} }