1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-01-17 14:08:15 +01:00

Autoloading support for Composer

This commit is contained in:
Rob Loach 2012-09-14 12:47:49 -04:00 committed by Edward Z. Yang
parent 72db575446
commit 8a8b123d33
2 changed files with 22 additions and 17 deletions

2
.gitignore vendored
View File

@ -20,3 +20,5 @@ docs/doxygen*
*.htmlt.ini
*.patch
/*.php
vendor
composer.lock

View File

@ -2,7 +2,7 @@
"name": "ezyang/htmlpurifier",
"description": "Standards compliant HTML filter written in PHP",
"type": "library",
"keywords": [ "html"],
"keywords": ["html"],
"homepage": "http://htmlpurifier.org/",
"license": "LGPL",
"authors": [
@ -14,5 +14,8 @@
],
"require": {
"php": ">=5.2"
},
"autoload": {
"classmap": ["library/"]
}
}