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:
parent
262ccad21e
commit
9e293b45a9
|
@ -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
|
||||
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"require" : {
|
||||
"php" : "^5.5",
|
||||
"ext-mbstring": "*"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue