summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--composer.json15
-rw-r--r--composer.lock69
3 files changed, 86 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 4e9b47a..61cc25c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-config.php \ No newline at end of file
+config.php
+/vendor/
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..6c2f494
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,15 @@
+{
+ "name": "moderndevslulw/tinybotweb",
+ "description": "a web frontend for the Tinybot Project",
+ "type": "project",
+ "license": "WTFPL",
+ "authors": [
+ {
+ "name": "moderndevslulw",
+ "email": "moderndevslulw@alright.party"
+ }
+ ],
+ "require": {
+ "erusev/parsedown": "^1.7"
+ }
+}
diff --git a/composer.lock b/composer.lock
new file mode 100644
index 0000000..3b7787b
--- /dev/null
+++ b/composer.lock
@@ -0,0 +1,69 @@
+{
+ "_readme": [
+ "This file locks the dependencies of your project to a known state",
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
+ "This file is @generated automatically"
+ ],
+ "content-hash": "55b64d5b88829d139fe1f58294be952e",
+ "packages": [
+ {
+ "name": "erusev/parsedown",
+ "version": "1.7.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/erusev/parsedown.git",
+ "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
+ "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-0": {
+ "Parsedown": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Emanuil Rusev",
+ "email": "hello@erusev.com",
+ "homepage": "http://erusev.com"
+ }
+ ],
+ "description": "Parser for Markdown.",
+ "homepage": "http://parsedown.org",
+ "keywords": [
+ "markdown",
+ "parser"
+ ],
+ "support": {
+ "issues": "https://github.com/erusev/parsedown/issues",
+ "source": "https://github.com/erusev/parsedown/tree/1.7.x"
+ },
+ "time": "2019-12-30T22:54:17+00:00"
+ }
+ ],
+ "packages-dev": [],
+ "aliases": [],
+ "minimum-stability": "stable",
+ "stability-flags": {},
+ "prefer-stable": false,
+ "prefer-lowest": false,
+ "platform": {},
+ "platform-dev": {},
+ "plugin-api-version": "2.6.0"
+}