User Guide > Tasks > Working with Deployment > Editing the Deployment XML > deployment.xml Tab

deployment.xml Tab

The deployment.xml tab is the XML source file and includes the definitions you have inserted in the previous tabs.

Note:

Deployment settings can be changed and applied by editing the XML in this tab, yet is recommended that you apply any changes by working with the designated tabs.

 

 

Usage Example

Example:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<package xmlns="http://www.zend.com/server/deployment-descriptor/1.0" version="1.0">

<name>deployment_tutorial</name>

    <version>

      <release>1.0.0</release>

     </version>

   <appdir>data</appdir>

     <scriptsdir>scripts</scriptsdir>

     <dependencies>

    <required>

       <php>

        <min>5.3.0</min>

       </php>

    </required>

   </dependencies>

     <parameters>

     <parameter id="Parameter" readonly="false" required="false" type="string"/>

     <parameter display="sdsd" id="sParameter" readonly="false" required="false" type="string">

       <defaultvalue>sdsd</defaultvalue>

     </parameter>

     <parameter id="Parameter" readonly="false" required="false" type="string"/>

  </parameters>

</package>

 

 

 

Read Also

  Enabling Deployment Support for Your Application    
  Editing the Deployment XML