PhpStorm 2024.1 Help

Deployment

PhpStorm assumes that all development, debugging, and testing is done on your computer and then the code is deployed to a staging or production environment.

The reason to stick to this "local development — deployment" model lies in the way PhpStorm provides code completion, code inspections, code navigation, and other coding assistance features. All this functionality is based on the project files index which PhpStorm builds when the project is loaded and updates on the fly as you edit your code.

To provide efficient coding assistance, PhpStorm needs to re-index code fast, which requires fast access to project files. The latter can be ensured only for local files, that is, files that are stored on you hard disk and are accessible through the file system.

Deploy project files to a web server from PhpStorm

With PhpStorm, you can connect to a local or remote web server, browse and edit its files, upload files and resources from your PhpStorm project to the web server, and synchronize changes between the local and deployed project versions.

Application deployment in PhpStorm
  1. The Remote Host tool window (Tools | Deployment | Browse Remote Host) lets you select one of the configured server connections and browse the tree view of files and folders under the server document root. Folders on the server that are mapped to PhpStorm projects are highlighted with a green background. For details, see:

  2. When you open a file from the server file system in the PhpStorm editor, a special toolbar appears at the top of the editor, showing the file editing status and available actions. For details, see:

  3. You can transfer (upload/download), synchronize, and compare files between the PhpStorm project and the project on the web server. PhpStorm shows operation logs in the File Transfer tool window (View | Tool Windows | File Transfer). For details, see:

Watch this video to learn more about deployment in PhpStorm:

Last modified: 12 April 2024