Use dynamic PHP version
This commit is contained in:
parent
e0e95a0e97
commit
19b4b7a9fc
1 changed files with 5 additions and 1 deletions
|
@ -97,7 +97,7 @@
|
||||||
|
|
||||||
<div class="w-full lg:w-1/2 px-4 mb-4 lg:mb-6">
|
<div class="w-full lg:w-1/2 px-4 mb-4 lg:mb-6">
|
||||||
<div class="mb-1 text-xs text-gray-600">PHP version</div>
|
<div class="mb-1 text-xs text-gray-600">PHP version</div>
|
||||||
<div>7.1</div>
|
<div v-text="phpVersion"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="w-full lg:w-1/2 px-4 mb-4 lg:mb-6">
|
<div class="w-full lg:w-1/2 px-4 mb-4 lg:mb-6">
|
||||||
|
@ -167,6 +167,10 @@ export default {
|
||||||
|
|
||||||
sshUrl: function () {
|
sshUrl: function () {
|
||||||
return this.application.machineName + '.' + this.environmentName + '@staging-1234.prod.hosting.acquia.com'
|
return this.application.machineName + '.' + this.environmentName + '@staging-1234.prod.hosting.acquia.com'
|
||||||
|
},
|
||||||
|
|
||||||
|
phpVersion: function () {
|
||||||
|
return _(this.environment).get('versions.php')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue