1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpmyadmin_ynh.git synced 2024-09-03 19:56:46 +02:00

Merge pull request #68 from YunoHost-Apps/upgrade-4.7.7

[Enh] Update to 4.7.7
This commit is contained in:
JimboJoe 2018-01-15 21:15:16 +01:00 committed by GitHub
commit fd337db39f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 4 deletions

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/phpmyadmin/phpmyadmin/archive/RELEASE_4_7_4.tar.gz SOURCE_URL=https://github.com/phpmyadmin/phpmyadmin/archive/RELEASE_4_7_7.tar.gz
SOURCE_SUM=c3b49600af094ec09c9098588973a8afbaa76e334bb47b072e70adf8d5c12704 SOURCE_SUM=f8af08bb9e90c4c18b634626e6ab525d066d8e1a6fcf6a19cb0e14b29344adc8
SOURCE_SUM_PRG=sha256sum SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Manage MySQL databases over the web", "en": "Manage MySQL databases over the web",
"fr": "Application web de gestion des bases de données MySQL" "fr": "Application web de gestion des bases de données MySQL"
}, },
"version": "4.7.4", "version": "4.7.7",
"url": "http://www.phpmyadmin.net", "url": "http://www.phpmyadmin.net",
"license": "GPL-2", "license": "GPL-2",
"maintainer": { "maintainer": {

View file

@ -26,7 +26,10 @@ init_composer() {
php -- --quiet --install-dir="$destdir" \ php -- --quiet --install-dir="$destdir" \
|| ynh_die "Unable to install Composer" || ynh_die "Unable to install Composer"
# Force the dependence to PHP 5.6
exec_composer "$destdir" config -g platform.php 5.6
exec_composer "$destdir" update --no-dev
# update dependencies to create composer.lock # update dependencies to create composer.lock
exec_composer "$destdir" install --no-dev \ exec_composer "$destdir" install --no-dev \
|| ynh_die "Unable to update Roundcube core dependencies" || ynh_die "Unable to update PhpMyAdmin core dependencies"
} }