Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

T

Overview

This page describes the parameters used in the Unified Agent's configuration.

...

Configuration File Parameter

Description and Expected Behavior

If True

If False

Default

Command Line Parameter Available?

php.resolveDependencies 

Whether to resolve PHP dependencies (using Composer).

Resolves PHP dependencies

Will not  resolve PHP dependencies

True
(except for when resolveAllDependencies=false

No

php.runPreStep 

Whether to run 'composer install' on the folder.

Runs 'composer install' on the project folder.

Will not run 'composer install' on the project folder.

False

No

php.includeDevDependencies 

Whether to scan PHP project dev dependencies.

Scans PHP project dev dependencies.

Will not scan PHP project dev dependencies.

False

No

php.removeDuplicateDependencies

Whether to remove duplicate dependencies during PHP dependency resolution.

Removes duplicate dependencies during PHP dependency resolution.

Includes duplicate dependencies during PHP dependency resolution.

FalseTrue

No

php.ignoreSourceFiles

When using the dependency resolver, it will only include package dependencies, not source files.

NOTE: Only relevant when fileSystemScan is true.

The scan includes only package dependencies, not source files.

When using the dependency resolver, it will include package dependencies, plus source files.

True

No

...