This repository has been archived by the owner on Feb 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
elnebuloso
committed
Jul 30, 2014
1 parent
b6b0bee
commit c1527a8
Showing
8 changed files
with
103 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.2.0 | ||
6.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
|
||
<project default="composer.validate"> | ||
|
||
|
||
<target name="composer.validate:init" hidden="true"> | ||
<property name="composer.executable" value="composer" /> | ||
<property name="composer.args" value="" /> | ||
</target> | ||
|
||
|
||
<target name="composer.validate:before" hidden="true"> | ||
<echo message="no actions defined" level="debug" /> | ||
</target> | ||
|
||
|
||
<target name="composer.validate:main" hidden="true"> | ||
<available file="${project.root}/composer.json" type="file" property="composer.json.exists" /> | ||
|
||
<if> | ||
<isset property="composer.json.exists" /> | ||
<then> | ||
<exec executable="${composer.executable}" logoutput="true" passthru="true" level="info" checkreturn="yes"> | ||
<arg line="validate" /> | ||
<arg line="${composer.args}" /> | ||
</exec> | ||
</then> | ||
</if> | ||
</target> | ||
|
||
|
||
<target name="composer.validate:after" hidden="true"> | ||
<echo message="no actions defined" level="debug" /> | ||
</target> | ||
|
||
|
||
<target name="composer.validate" depends="composer.validate:init, composer.validate:before, composer.validate:main, composer.validate:after"> | ||
<echo message="successful" /> | ||
</target> | ||
|
||
|
||
<target name="composer.validate:help" depends="composer.validate:init"> | ||
<echo message="PROPERTY VALUE" /> | ||
<echo message="----------------------------------------------------------------------------------------------------" /> | ||
<echo message="composer.executable ${composer.executable}" /> | ||
<echo message="composer.args ${composer.args}" /> | ||
</target> | ||
|
||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters