PHP code example of liquidlight / deployer-typo3-ci
1. Go to this page and download the library: Download liquidlight/deployer-typo3-ci library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
liquidlight / deployer-typo3-ci example snippets
host('production')
->set('hostname', 'client.xxx')
;
host('production')
->set('ll_deployer_environment', 'cpanel')
;
set(
'll_deployer_asset_paths',
[
'{{release_path}}/html/_assets'
]
);
on(select('instance=production'), function ($host) {
after('cache:clear_php_cli', 'cache:clear_php_http');
});