1 Star 0 Fork 1

dwdcth/php-gui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.xml 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
Rafael Reis 提交于 2016-04-13 21:36 . Covering with unit tests
<?xml version="1.0" encoding="utf-8"?>
<project name="php-gui" basedir="." default="main">
<property name="examples" value="examples" />
<property name="source" value="src" />
<property name="test" value="test" />
<property name="bindir" value="bin" />
<target name="main" description="Start analyzing our application">
<echo msg="Start Build" />
<phingCall target="phplint" />
<phingCall target="phpunit" />
<phingCall target="phpcs" />
<phingCall target="generatedoc" />
<echo msg="Finished Build" />
</target>
<target name="phplint" description="Check syntax of a fileset of source files.">
<phplint>
<fileset dir="${source}">
<include name="**/*.php"/>
</fileset>
</phplint>
</target>
<target name="phpunit" description="Run unit tests using PHPUnit">
<exec passthru="true" command="${bindir}/phpunit" checkreturn="true"/>
</target>
<target name="phpcs" description="Coding Standards Analysis">
<exec passthru="true" command="${bindir}/phpcs --standard=PSR2 ${source}" checkreturn="true" />
<exec passthru="true" command="${bindir}/phpcs --standard=PSR2 ${examples}" checkreturn="true" />
<exec passthru="true" command="${bindir}/phpcs --standard=PSR2 ${test}" checkreturn="true" />
</target>
<target name="generatedoc" description="Generate Doc">
<exec passthru="true" command="${bindir}/generatedoc" checkreturn="true"/>
</target>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dwdcth/php-gui.git
git@gitee.com:dwdcth/php-gui.git
dwdcth
php-gui
php-gui
master

搜索帮助