Skip to content

Latest commit

 

History

History
82 lines (56 loc) · 3.78 KB

phpstorm.md

File metadata and controls

82 lines (56 loc) · 3.78 KB

IDE JetBrains PhpStorm

This document describing how you can configure your IDE PhpStorm.

Configuring PhpStorm

General

  • Go to Settings -> Plugins and install next plugins:
    • .env files support
    • .ignore
    • Makefile support
    • Php Annotations
    • Php Inspections ​(EA Extended)
    • Php Toolbox
    • Symfony support​
  • Go to Settings -> Php -> Symfony and check Enable plugin for this project and set Web Directory value as public.
  • Go to Settings -> Php -> Composer and set path to composer.json, check other settings:

Path mappings

CLI Interpreter

You need to set correct CLI interpreter for your PhpStorm. In order to do it please open Settings -> PHP section and follow recommendations configuring remote PHP interpreters.

Path mappings

Server

In order to configure PHP servers please open Settings -> PHP -> Servers. You need to configure how your local files will be mapped inside docker container:

Path mappings

Test Frameworks

If you want to run tests directly from your IDE you need to do following configuration in Settings -> PHP -> Test Frameworks:

Path mappings

Next you need to add Run/Debug configuration for PHP Remote Debug. It needs to be the same as image below:

Path mappings

Debugging

In order to use Xdebug as debugging tool please follow Using Xdebug documentation.

PHP Inspections and code quality tools

  • Go to Settings -> PHP -> Quality tools and configure next:

Path mappings Path mappings Path mappings Path mappings Path mappings

  • Go to Settings -> Editor -> Inspections and import profile Systemsdk from docs/phpstorm and make sure that you have proper path to phpmd_ruleset.xml:

Path mappings

  • Go to Settings -> Tools -> External tools and create ecs tool:

Path mappings

Note: Arguments value should be exec-bash cmd="./vendor/bin/ecs --clear-cache check $FilePathRelativeToProjectRoot$".

Note: In order to use it - right click on the necessary file/folder in PhpStorm and select context menu External Tools -> ecs.

  • Go to Settings -> Tools -> External tools and create phpcs tool:

Path mappings

Note: Arguments value should be exec-bash cmd="./vendor/bin/phpcs --version && ./vendor/bin/phpcs --standard=PSR12 --colors -p $FilePathRelativeToProjectRoot$".

Note: In order to use it - right click on the necessary file/folder in PhpStorm and select context menu External Tools -> phpcs.

For inspecting your code you can use main menu item Code -> Inspect Code. Code will be processed by code quality tools like PHP CS Fixer, PHP Mess Detector, PHP CodeSniffer, PHPStan.

External documentations