docs: fix php7.4 imagick version (#4937)

This commit is contained in:
Alexis Saettler
2021-03-07 19:08:04 +01:00
committed by GitHub
parent cb0d0856d4
commit 87af683c9b
4 changed files with 3 additions and 36 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ Then install php 7.4 with these extensions:
sudo apt update
sudo apt install -y php7.4 php7.4-cli php7.4-common php7.4-fpm \
php7.4-json php7.4-opcache php7.4-mysql php7.4-mbstring php7.4-zip \
php7.4-bcmath php7.4-intl php7.4-xml php7.4-curl php7.4-gd php7.4-gmp php-imagick
php7.4-bcmath php7.4-intl php7.4-xml php7.4-curl php7.4-gd php7.4-gmp php7.4-imagick
```
**Composer:** After you're done installing PHP, you'll need the [Composer](https://getcomposer.org/download/) dependency manager.
@@ -1,33 +0,0 @@
{
"package": {
"name": "monicahq",
"repo": "vagrant",
"subject": "monicahq",
"desc": "MonicaHQ, the Personal Relationship Manager",
"website_url": "https://www.monicahq.com",
"issue_tracker_url": "https://github.com/monicahq/monica/issues",
"vcs_url": "https://github.com/monicahq/monica.git",
"github_use_tag_release_notes": true,
"github_release_notes_file": "CHANGELOG.md",
"licenses": ["AGPL-V3"],
"labels": [],
"public_download_numbers": false,
"public_stats": false,
"attributes": []
},
"version": {
"name": "$(version)",
"desc": "$(description)",
"released": "$(released)",
"vcs_tag": "$(travis_tag)",
"github_use_tag_release_notes": true,
"attributes": [
{"name": "commit", "values" : ["$(travis_commit)"], "type": "string"},
{"name": "build", "values" : [$(travis_build_number)]}
]
},
"files": [
{"includePattern": "scripts/vagrant/build/monicahq-stable\.box", "uploadPattern": "monicahq.box"}
],
"publish": true
}
+1 -1
View File
@@ -54,7 +54,7 @@ curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin
echo -e "\n\033[4;32mInstalling packages for Monica\033[0;40m"
apt-get install -y php7.4-common php7.4-fpm \
php7.4-json php7.4-opcache php7.4-mysql php7.4-mbstring php7.4-zip \
php7.4-bcmath php7.4-intl php7.4-xml php7.4-curl php7.4-gd php7.4-gmp >/dev/null
php7.4-bcmath php7.4-intl php7.4-xml php7.4-curl php7.4-gd php7.4-gmp php7.4-imagick >/dev/null
echo -e "\n\033[4;32mGetting database ready\033[0;40m"
mysql -uroot -p$MYSQL_ROOT_PASSWORD -e "CREATE DATABASE $MYSQL_DB_DATABASE;
+1 -1
View File
@@ -2,7 +2,7 @@
set -euo pipefail
# set version of vagrant to use :
vagrantversion=2.2.4
vagrantversion=2.2.14
mkdir -p $HOME/vagrant
pushd $HOME/vagrant > /dev/null