just-a-blog

A bad blogging software that converts Markdown into PHP for some reason.
Log | Files | Refs | README | LICENSE

composer.json (543B)


      1 {
      2     "name": "erusev/parsedown",
      3     "description": "Parser for Markdown.",
      4     "keywords": ["markdown", "parser"],
      5     "homepage": "http://parsedown.org",
      6     "type": "library",
      7     "license": "MIT",
      8     "authors": [
      9         {
     10             "name": "Emanuil Rusev",
     11             "email": "hello@erusev.com",
     12             "homepage": "http://erusev.com"
     13         }
     14     ],
     15     "require": {
     16         "php": ">=5.3.0"
     17     },
     18     "require-dev": {
     19         "phpunit/phpunit": "^4.8.35"
     20     },
     21     "autoload": {
     22         "psr-0": {"Parsedown": ""}
     23     }
     24 }