Adjust dependencies and deployer config to PHP 7.1

This commit is contained in:
Björn Fromme
2018-09-14 09:59:00 +02:00
parent 131279b120
commit 949b539653
3 changed files with 234 additions and 1602 deletions
+4 -8
View File
@@ -17,11 +17,13 @@ add('shared_files', [
'{{typo3_webroot}}/typo3conf/LocalConfiguration.php'
]);
server('production', 'dreipunktnull.com')
host('production')
->hostname('dreipunktnull.com')
->user('ssh-438277-ep-reisen')
->forwardAgent()
->set('deploy_path', '/kunden/13174_42857/kunden/typo3sites/ep-reisen/{{application}}')
->set('bin/php', '/usr/local/bin/php5-56STABLE-CLI')
->set('bin/php', '/usr/local/bin/php7-71STABLE-CLI')
->set('http_user', 'ssh-438277-ep-reisen')
;
task('build', function () {
@@ -29,9 +31,6 @@ task('build', function () {
});
task('upload:epevents', function () {
array_map(function ($assetDir) {
run('mkdir -p {{release_path}}/web/typo3conf/ext/ep_events/Resources/Public/' . $assetDir);
}, ['css', 'fonts', 'images', 'js']);
upload(
__DIR__ . '/web/typo3conf/ext/ep_events/Resources/Public/',
'{{release_path}}/web/typo3conf/ext/ep_events/Resources/Public'
@@ -39,9 +38,6 @@ task('upload:epevents', function () {
});
task('upload:eptheme', function () {
array_map(function ($assetDir) {
run('mkdir -p {{release_path}}/web/typo3conf/ext/ep_theme/Resources/Public/' . $assetDir);
}, ['css', 'fonts', 'images', 'js']);
upload(
__DIR__ . '/web/typo3conf/ext/ep_theme/Resources/Public/',
'{{release_path}}/web/typo3conf/ext/ep_theme/Resources/Public'