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
This commit is contained in:
Bluscream 2017-10-22 21:13:20 +02:00 committed by Wruczek
parent 262ccad21e
commit 9e293b45a9
2 changed files with 9 additions and 0 deletions

3
.gitignore vendored
View File

@ -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

6
composer.json Normal file
View File

@ -0,0 +1,6 @@
{
"require" : {
"php" : "^5.5",
"ext-mbstring": "*"
}
}