Skip to content

Commit

Permalink
Merge branch '6.5' into 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Nov 6, 2018
2 parents a7d935d + 3cf20d2 commit 03325fa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,17 @@
<move file="${basedir}/composer.json.bak" tofile="${basedir}/composer.json"/>
</target>

<target name="check-dependencies" description="Performs check for outdated dependencies">
<exec executable="${basedir}/build/tools/composer" taskname="composer">
<arg value="show"/>
<arg value="--minor-only"/>
<arg value="--latest"/>
<arg value="--direct"/>
<arg value="--outdated"/>
<arg value="--strict"/>
</exec>
</target>

<target name="php-syntax-check" unless="php-syntax-check.done" description="Perform syntax check on PHP files">
<apply executable="php" failonerror="true" taskname="lint">
<arg value="-l"/>
Expand Down
Binary file modified build/tools/composer
Binary file not shown.

0 comments on commit 03325fa

Please sign in to comment.