mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 01:02:24 +01:00
As well rename test dir to tests, as Pest does not support dir without s on the end. Also, remove PHP requirement from composer.json as we already have check-in bin/dep and it's better to have the check only in one place (now they already out of sync).
10 lines
167 B
PHP
10 lines
167 B
PHP
<?php
|
|
|
|
namespace Deployer;
|
|
|
|
require __DIR__ . '/deploy.php';
|
|
|
|
task('deploy:update_code', function () {
|
|
upload(__FIXTURES__ . '/project/', '{{release_path}}');
|
|
});
|