mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
19 lines
211 B
Markdown
19 lines
211 B
Markdown
|
Upgrade from 2.x to 3.x
|
||
|
=======================
|
||
|
|
||
|
### `->path('...')`
|
||
|
|
||
|
Replace your server paths configuration:
|
||
|
|
||
|
```php
|
||
|
server(...)
|
||
|
->path(...);
|
||
|
```
|
||
|
|
||
|
to:
|
||
|
|
||
|
```php
|
||
|
server(...)
|
||
|
->env('deploy_path', '...');
|
||
|
```
|