deployer
deployer copied to clipboard
The PHP deployment tool with support for popular frameworks out of the box
I have run into a timeout with fetch() a couple of times. Is it possible to add an options argument to the fetch() function? This would forward the options to...
- Deployer version: 7.0.1 - Deployment OS: Ubuntu 22.04 ```` host('123.123.123.123')->set('ssh_arguments', ['-o ProxyCommand="ssh [email protected]"']); ```` When setting an SSH argument on a host that includes a space, the connectionOptionsArray method...
- Deployer version: 7.0.0 - Deployment OS: ubuntu Please, provide a minimal reproducible example of deploy.php ```php task('demo', function () { writeln('demo task'); })->select('stage=demo'); task('test', function () { writeln('dev task');...
- Deployer version: 7.0.0 - Deployment OS: MacOS 12.5 If GIT `user.name` config property contains a **single quote** (e.g. "Erik D'Ercole", as my full name), Deployer exits with an error:...
- [ ] Bug fix #…? - [x] New feature? - [ ] BC breaks? - [ ] Tests added? - [x] Docs added? We deploy different composer.json file based...
- Deployer version: 7.3.3 - Deployment OS: Ubuntu 22.04 Example Config: ```yaml import: - recipe/laravel.php - contrib/ms-teams.php config: application: 'my-app' teams_webhook: https://deploy.requestcatcher.com teams_text: "_{{user}}_ deploying `{{branch}}` to *{{name}}*" hosts: server:...
When running the `fetch()` function, we can now add options: ```php fetch( 'https://httpbin.org/get', options: [ CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => false, CURLOPT_TIMEOUT => 30, ... ] ); ``` - [...
- Deployer version: 7.3.3 - Deployment OS: Ubuntu 22.04 ``` import: - contrib/crontab.php config: crontab: identifier: 'application' jobs: - '* * * * * cd {{current_path}} && {{bin/php}} wp-cron.php >>...
- Deployer version: 7.3.3 - Deployment OS: Ubuntu 22.04 ``` import: - contrib/crontab.php config: crontab:identifier: 'application4' crontab:jobs: - '* * * * * cd {{current_path}} && {{bin/php}} wp-cron.php >> /dev/null...
- Deployer version: 7.3.1 - Deployment OS: Ubuntu Please add 7.3.1 version to [manifest.json](https://deployer.org/manifest.json). Our deployment is looking for the latest release :)