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
+6 -6
View File
@@ -7,7 +7,7 @@
"license": "GPL-2.0+",
"type": "project",
"require": {
"php": "^5.6",
"php": "^7.1",
"ext-json": "*",
"typo3/cms": "^7.6",
"georgringer/news": "^6.1",
@@ -56,18 +56,18 @@
"typo3-ter/media": "^4.5",
"typo3-ter/metaseo": "2.1",
"typo3-ter/ods-redirects": "^1.3",
"typo3-ter/pagepath": "^1.1",
"typo3-ter/pb-social": "^1.3",
"typo3-ter/sourceopt": "^1.0",
"typo3-ter/html-compress": "^1.1",
"typo3-ter/imageoptimizer": "^1.0",
"doctrine/dbal": "^2.5",
"yohang/calendr": "^2.1",
"wyrihaximus/html-compress": "^1.4",
"symfony/property-access": "^3.4",
"symfony/options-resolver": "^3.4",
"symfony/serializer": "^3.3",
"league/csv": "^8.2"
"league/csv": "^8.2",
"christophlehmann/imageoptimizer": "^1.1",
"smichaelsen/pagepath": "^1.1"
},
"scripts": {
"typo3-cms-scripts": [
@@ -102,11 +102,11 @@
}
},
"require-dev": {
"deployer/deployer": "^4.3"
"deployer/deployer": "^6.0"
},
"config": {
"platform": {
"php": "5.6.34"
"php": "7.1.10"
}
}
}
Generated
+224 -1588
View File
File diff suppressed because it is too large Load Diff
+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'