Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
composer.phar
vendor/
build/
config/config.php
config/config.php
docs/main
21 changes: 19 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<target name="clean" description="Clean project from build artifacts">
<delete dir="build"/>
<delete dir="docs/main"/>
</target>


Expand All @@ -18,8 +19,24 @@
<mkdir dir="build/reports"/>
<mkdir dir="build/reports/phpunit"/>
<mkdir dir="build/reports/phpmd"/>
<mkdir dir="docs/main"/>
</target>

<target name="docs" depends="prepare">
<phpdoc2 title="API Documentation"
destdir="docs/main"
template="responsive-twig">
<fileset dir="./src">
<include name="**/*.php" />
</fileset>
<fileset dir="./clicommands">
<include name="**/*.php" />
</fileset>
<fileset dir="./vendor/r4j4h/php-druid-query">
<include name="**/*.php" />
</fileset>
</phpdoc2>
</target>

<target name="phpunit" description="Run PHPUnit on the project">

Expand Down Expand Up @@ -125,8 +142,8 @@

<target name="build" depends="clean,prepare,phpunit"/>

<target name="report" depends="clean,prepare,phpmd,phploc"/>
<target name="report" depends="clean,prepare,phpmd,phploc,docs"/>

<target name="all" depends="build,report"/>

</project>
</project>
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,16 @@
"psr/log": "1.0.0",
"guzzle/guzzle": "~3.9",
"symfony/console": "~2.5",
"r4j4h/php-druid-query": "1.0.x-dev"
"r4j4h/php-druid-query": "1.0.x-dev",
"react/promise": "~1.0",
"bcncommerce/json-stream": "*"
},
"require-dev": {
"phpunit/phpunit": "~4",
"phing/phing": "~2",
"phpmd/phpmd": "~2",
"phploc/phploc": "~2"
"phploc/phploc": "~2",
"phpdocumentor/phpdocumentor": "2.*"
},
"autoload": {
"psr-4": {
Expand Down
Loading