composer.json 792 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "ezyang/htmlpurifier",
  3. "description": "Standards compliant HTML filter written in PHP",
  4. "type": "library",
  5. "keywords": ["html"],
  6. "homepage": "http://htmlpurifier.org/",
  7. "license": "LGPL-2.1-or-later",
  8. "authors": [
  9. {
  10. "name": "Edward Z. Yang",
  11. "email": "admin@htmlpurifier.org",
  12. "homepage": "http://ezyang.com"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.2"
  17. },
  18. "require-dev": {
  19. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  20. },
  21. "autoload": {
  22. "psr-0": { "HTMLPurifier": "library/" },
  23. "files": ["library/HTMLPurifier.composer.php"],
  24. "exclude-from-classmap": [
  25. "/library/HTMLPurifier/Language/"
  26. ]
  27. }
  28. }