Adjust dependencies and deployer config to PHP 7.1
This commit is contained in:
+6
-6
@@ -7,7 +7,7 @@
|
|||||||
"license": "GPL-2.0+",
|
"license": "GPL-2.0+",
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^5.6",
|
"php": "^7.1",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"typo3/cms": "^7.6",
|
"typo3/cms": "^7.6",
|
||||||
"georgringer/news": "^6.1",
|
"georgringer/news": "^6.1",
|
||||||
@@ -56,18 +56,18 @@
|
|||||||
"typo3-ter/media": "^4.5",
|
"typo3-ter/media": "^4.5",
|
||||||
"typo3-ter/metaseo": "2.1",
|
"typo3-ter/metaseo": "2.1",
|
||||||
"typo3-ter/ods-redirects": "^1.3",
|
"typo3-ter/ods-redirects": "^1.3",
|
||||||
"typo3-ter/pagepath": "^1.1",
|
|
||||||
"typo3-ter/pb-social": "^1.3",
|
"typo3-ter/pb-social": "^1.3",
|
||||||
"typo3-ter/sourceopt": "^1.0",
|
"typo3-ter/sourceopt": "^1.0",
|
||||||
"typo3-ter/html-compress": "^1.1",
|
"typo3-ter/html-compress": "^1.1",
|
||||||
"typo3-ter/imageoptimizer": "^1.0",
|
|
||||||
"doctrine/dbal": "^2.5",
|
"doctrine/dbal": "^2.5",
|
||||||
"yohang/calendr": "^2.1",
|
"yohang/calendr": "^2.1",
|
||||||
"wyrihaximus/html-compress": "^1.4",
|
"wyrihaximus/html-compress": "^1.4",
|
||||||
"symfony/property-access": "^3.4",
|
"symfony/property-access": "^3.4",
|
||||||
"symfony/options-resolver": "^3.4",
|
"symfony/options-resolver": "^3.4",
|
||||||
"symfony/serializer": "^3.3",
|
"symfony/serializer": "^3.3",
|
||||||
"league/csv": "^8.2"
|
"league/csv": "^8.2",
|
||||||
|
"christophlehmann/imageoptimizer": "^1.1",
|
||||||
|
"smichaelsen/pagepath": "^1.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"typo3-cms-scripts": [
|
"typo3-cms-scripts": [
|
||||||
@@ -102,11 +102,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"deployer/deployer": "^4.3"
|
"deployer/deployer": "^6.0"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"platform": {
|
"platform": {
|
||||||
"php": "5.6.34"
|
"php": "7.1.10"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+224
-1588
File diff suppressed because it is too large
Load Diff
+4
-8
@@ -17,11 +17,13 @@ add('shared_files', [
|
|||||||
'{{typo3_webroot}}/typo3conf/LocalConfiguration.php'
|
'{{typo3_webroot}}/typo3conf/LocalConfiguration.php'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
server('production', 'dreipunktnull.com')
|
host('production')
|
||||||
|
->hostname('dreipunktnull.com')
|
||||||
->user('ssh-438277-ep-reisen')
|
->user('ssh-438277-ep-reisen')
|
||||||
->forwardAgent()
|
->forwardAgent()
|
||||||
->set('deploy_path', '/kunden/13174_42857/kunden/typo3sites/ep-reisen/{{application}}')
|
->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 () {
|
task('build', function () {
|
||||||
@@ -29,9 +31,6 @@ task('build', function () {
|
|||||||
});
|
});
|
||||||
|
|
||||||
task('upload:epevents', 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(
|
upload(
|
||||||
__DIR__ . '/web/typo3conf/ext/ep_events/Resources/Public/',
|
__DIR__ . '/web/typo3conf/ext/ep_events/Resources/Public/',
|
||||||
'{{release_path}}/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 () {
|
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(
|
upload(
|
||||||
__DIR__ . '/web/typo3conf/ext/ep_theme/Resources/Public/',
|
__DIR__ . '/web/typo3conf/ext/ep_theme/Resources/Public/',
|
||||||
'{{release_path}}/web/typo3conf/ext/ep_theme/Resources/Public'
|
'{{release_path}}/web/typo3conf/ext/ep_theme/Resources/Public'
|
||||||
|
|||||||
Reference in New Issue
Block a user