PHP Classes

File: build.xml

Recommend this page to a friend!
  Classes of jawira   Mini PHP Getopt   build.xml   Download  
File: build.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Mini PHP Getopt
Extract command line parameter values using getopt
Author: By
Last change:
Date: 4 years ago
Size: 1,010 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8" ?> <project name="Project name" description="Project description" default="diagnostics"> <defaultexcludes default="true"/><!--Initializing default excludes--> <defaultexcludes add="**/.idea"/> <defaultexcludes add="**/.idea/**"/> <target name="diagnostics"> <diagnostics/> </target> <target name="git:tags" description="List all git tags"> <!--https://stackoverflow.com/a/34239190/4345061--> <exec executable="git" passthru="true"> <arg value="log"/> <arg line="--graph --all --decorate --oneline --simplify-by-decoration"/> </exec> </target> <target name="changelog:links" description="Update links in composer.json"> <composer command="require"> <arg value="symplify/changelog-linker"/> </composer> <exec executable="vendor/bin/changelog-linker"> <arg value="link"/> </exec> <composer command="remove"> <arg value="symplify/changelog-linker"/> </composer> </target> </project>