composer.json 447 B

1234567891011121314151617181920
  1. {
  2. "name": "mikevanriel/text-to-latex",
  3. "description": "A converter class that converts normal ASCII text to valid LaTeX",
  4. "autoload": {
  5. "psr-0":{ "MikeVanRiel": ["src/", "tests/unit/"] }
  6. },
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Mike van Riel",
  11. "email": "me@mikevanriel.com"
  12. }
  13. ],
  14. "require": {
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "~3.7"
  18. }
  19. }