B.19 IncludePathTask

Modifies the PHP include_path configuration option for the duration of this phing run.

The given path is prepended to the current include path.

Table B.20: Attributes

NameTypeDescriptionDefaultRequired
classpathStringthe new include path[s]n/aYes
classPathRefStringReference to a previously defined Path typen/aNo

B.19.1 Examples

<includepath classpath="new/path/here" />
<includepath classpath="path1:path2" />
<path id="project.class.path">
  <pathelement dir="lib/"/>
  <pathelement dir="ext/"/>
</paentry>
<includepath classpathref="project.class.path" />