JetBrains Fleet 1.48 Help

PHP run configurations

This topic summarizes the run configurations available for PHP. Each table provides keys that are available within a run configuration and their descriptions.

php

Run configuration for launching PHP scripts

environment

Custom environment variables for the process, specified as a JSON object. To define an environment variable, add a property where the key is the variable name and the value is its value. For example:

"environment": { "TEMP_DIR": "/home/user/temp", "GENERATE_RANDOM_PASSWORD": "true" }

dependsOn

Names of other configurations to run before this configuration. For example: "dependsOn": ["first", "second"]. For details, see Chained run configurations.

workingDir

Working directory for the run configuration.

allowParallelRun

If set to true, multiple instances of this configuration can run simultaneously.

file

Relative path to a PHP file

Default value: null

php-test

Run configuration for launching PHP tests

arguments

(required)

Optional arguments to be passed to the test as-is

phpUnitExecutable

Path to PHPUnit executable

Default value: null

22 May 2025