deployer/UPGRADE.md

18 lines
272 B
Markdown
Raw Normal View History

2016-11-05 16:42:46 +07:00
# Upgrade from 3.x to 4.x
2015-02-05 17:14:35 +03:00
2016-11-05 16:42:46 +07:00
# Upgrade from 2.x to 3.x
2015-02-05 17:14:35 +03:00
2016-11-05 16:42:46 +07:00
1. ### `->path('...')`
Replace your server paths configuration:
```php
server(...)
->path(...);
```
to:
```php
server(...)
->env('deploy_path', '...');
```