Added Parsedown to dependency list

This commit is contained in:
Daniel Saunders 2018-05-11 01:00:38 -04:00
parent 81ceabe744
commit 0075b8b0c2
3 changed files with 190 additions and 485 deletions

View File

@ -2,13 +2,19 @@
"name": "circlepuller/tinyboard",
"description": "Tinyboard is a light-weight, fast, highly configurable and user-friendly imageboard software package released under a non-restrictive open-source license. It is written in PHP and has few dependencies.",
"type": "project",
"config": {
"platform": {
"php": "7.0.27"
}
},
"require": {
"gettext/gettext": "^4.4",
"twig/twig": "^2.4",
"twig/extensions": "^1.5",
"maxmind/geoip": "^1.1",
"mrclay/minify": "^3.0",
"lifo/ip": "^1.0"
"lifo/ip": "^1.0",
"erusev/parsedown": "^1.7"
},
"license": "MIT",
"authors": [

665
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -25,8 +25,6 @@ require_once 'inc/lock.php';
require_once 'inc/queue.php';
require_once 'inc/polyfill.php';
@include_once 'inc/lib/parsedown/Parsedown.php'; // fail silently, this isn't a critical piece of code
// the user is not currently logged in as a moderator
$mod = false;