From 9e293b45a9cd495c8f8c37c2ecc3788cb2586d9b Mon Sep 17 00:00:00 2001 From: Bluscream Date: Sun, 22 Oct 2017 21:13:20 +0200 Subject: [PATCH] Support for heroku (#75) * Create composer.json added composer.json with mbstring for heroku support * Update .gitignore Added heroku's entries to the gitignore file * Update composer.json --- .gitignore | 3 +++ composer.json | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 composer.json diff --git a/.gitignore b/.gitignore index 1eda48c..cd71c5c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,9 @@ admin/ cache/ !/cache/.htaccess +# Heroku specific entries +vendor/ +.env # Created by https://www.gitignore.io/api/osx,linux,windows,phpstorm,sublimetext diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d95217d --- /dev/null +++ b/composer.json @@ -0,0 +1,6 @@ +{ + "require" : { + "php" : "^5.5", + "ext-mbstring": "*" + } +}