PHP Classes

File: vendor/sebastian/diff/build.xml

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/sebastian/diff/build.xml   Download  
File: vendor/sebastian/diff/build.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 4 years ago
Size: 782 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <project name="diff" default="setup"> <target name="setup" depends="clean,composer"/> <target name="clean" description="Cleanup build artifacts"> <delete dir="${basedir}/vendor"/> <delete file="${basedir}/composer.lock"/> </target> <target name="composer" depends="clean" description="Install dependencies with Composer"> <exec executable="composer" taskname="composer"> <arg value="update"/> <arg value="--no-interaction"/> <arg value="--no-progress"/> <arg value="--no-ansi"/> <arg value="--no-suggest"/> <arg value="--optimize-autoloader"/> <arg value="--prefer-stable"/> </exec> </target> </project>