composer.json 508 B

12345678910111213141516171819202122
  1. {
  2. "name": "enshrined/svg-sanitize",
  3. "description": "An SVG sanitizer for PHP",
  4. "license": "GPL-2.0+",
  5. "authors": [
  6. {
  7. "name": "Daryll Doyle",
  8. "email": "daryll@enshrined.co.uk"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "enshrined\\svgSanitize\\": "src"
  14. }
  15. },
  16. "minimum-stability": "stable",
  17. "require": {},
  18. "require-dev": {
  19. "phpunit/phpunit": "^4.7",
  20. "codeclimate/php-test-reporter": "^0.1.2"
  21. }
  22. }