-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from delatbabel/update-docblocks
Add docblocks, deprecate inquiry for fetchTransaction
- Loading branch information
Showing
13 changed files
with
817 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,9 @@ | |
composer.lock | ||
composer.phar | ||
phpunit.xml | ||
.directory | ||
.idea/ | ||
dirlist.app | ||
dirlist.vendor | ||
dirlist.cache | ||
/documents/ |
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,157 @@ | ||
#!/bin/sh | ||
|
||
# | ||
# Smart little documentation generator. | ||
# GPL/LGPL | ||
# (c) Del 2015 http://www.babel.com.au/ | ||
# | ||
|
||
APPNAME='Omnipay Payflow Gateway Documentation' | ||
CMDFILE=apigen.cmd.$$ | ||
DESTDIR=./documents | ||
SRCDIRS="src" | ||
VENDORDIRS="vendor/guzzle vendor/omnipay" | ||
|
||
# | ||
# Ensure that dependencies are installed (including codeception and phpunit) | ||
# | ||
if [ -f composer.lock ]; then | ||
/usr/local/bin/composer install | ||
else | ||
/usr/local/bin/composer update | ||
fi | ||
|
||
# | ||
# Find apigen, either in the path or as a local phar file | ||
# | ||
if [ -f apigen.phar ]; then | ||
APIGEN="php apigen.phar" | ||
|
||
else | ||
APIGEN=`which apigen` | ||
if [ ! -f "$APIGEN" ]; then | ||
|
||
# Search for phpdoc if apigen is not found. | ||
if [ -f phpDocumentor.phar ]; then | ||
PHPDOC="php phpDocumentor.phar" | ||
|
||
else | ||
PHPDOC=`which phpdoc` | ||
if [ ! -f "$PHPDOC" ]; then | ||
echo "Neither apigen nor phpdoc is installed in the path or locally, please install one of them" | ||
echo "see http://www.apigen.org/ or http://www.phpdoc.org/" | ||
exit 1 | ||
fi | ||
fi | ||
fi | ||
fi | ||
|
||
# | ||
# As of version 4 of apigen need to use the generate subcommand | ||
# | ||
if [ ! -z "$APIGEN" ]; then | ||
APIGEN="$APIGEN generate" | ||
fi | ||
|
||
# | ||
# Without any arguments this builds the entire system documentation, | ||
# making the cache file first if required. | ||
# | ||
if [ -z "$1" ]; then | ||
# | ||
# Check to see that the cache has been made. | ||
# | ||
if [ ! -f dirlist.cache ]; then | ||
echo "Making dirlist.cache file" | ||
$0 makecache | ||
fi | ||
|
||
# | ||
# Build the apigen/phpdoc command in a file. | ||
# | ||
if [ ! -z "$APIGEN" ]; then | ||
echo "$APIGEN --php --tree --title '$APPNAME API Documentation' --destination $DESTDIR/main \\" > $CMDFILE | ||
cat dirlist.cache | while read dir; do | ||
echo "--source $dir \\" >> $CMDFILE | ||
done | ||
echo "" >> $CMDFILE | ||
|
||
elif [ ! -z "$PHPDOC" ]; then | ||
echo "$PHPDOC --sourcecode --title '$APPNAME API Documentation' --target $DESTDIR/main --directory \\" > $CMDFILE | ||
cat dirlist.cache | while read dir; do | ||
echo "${dir},\\" >> $CMDFILE | ||
done | ||
echo "" >> $CMDFILE | ||
|
||
else | ||
"Neither apigen nor phpdoc are found, how did I get here?" | ||
exit 1 | ||
fi | ||
|
||
# | ||
# Run the apigen command | ||
# | ||
rm -rf $DESTDIR/main | ||
mkdir -p $DESTDIR/main | ||
. ./$CMDFILE | ||
|
||
/bin/rm -f ./$CMDFILE | ||
|
||
# | ||
# The "makecache" argument causes the script to just make the cache file | ||
# | ||
elif [ "$1" = "makecache" ]; then | ||
echo "Find application source directories" | ||
find $SRCDIRS -name \*.php -print | \ | ||
( | ||
while read file; do | ||
grep -q 'class' $file && dirname $file | ||
done | ||
) | sort -u | \ | ||
grep -v -E 'config|docs|migrations|test|Test|views|web' > dirlist.app | ||
|
||
echo "Find vendor source directories" | ||
find $VENDORDIRS -name \*.php -print | \ | ||
( | ||
while read file; do | ||
grep -q 'class' $file && dirname $file | ||
done | ||
) | sort -u | \ | ||
grep -v -E 'config|docs|migrations|test|Test|views|codesniffer|phpmd|pdepend|php-parser|codeception|phpunit' > dirlist.vendor | ||
|
||
# | ||
# Filter out any directories for which apigen fails | ||
# | ||
echo "Filter source directories" | ||
mkdir -p $DESTDIR/tmp | ||
cat dirlist.app dirlist.vendor | while read dir; do | ||
if [ ! -z "$APIGEN" ]; then | ||
$APIGEN --quiet --title "Test please ignore" \ | ||
--source $dir \ | ||
--destination $DESTDIR/tmp && ( | ||
echo "Including $dir" | ||
echo $dir >> dirlist.cache | ||
) || ( | ||
echo "Excluding $dir" | ||
) | ||
|
||
elif [ ! -z "$PHPDOC" ]; then | ||
$PHPDOC --quiet --title "Test please ignore" \ | ||
--directory $dir \ | ||
--target $DESTDIR/tmp && ( | ||
echo "Including $dir" | ||
echo $dir >> dirlist.cache | ||
) || ( | ||
echo "Excluding $dir" | ||
) | ||
|
||
fi | ||
done | ||
echo "Documentation cache dirlist.cache built OK" | ||
|
||
# | ||
# Clean up | ||
# | ||
/bin/rm -rf $DESTDIR/tmp | ||
|
||
fi |
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,25 @@ | ||
#!/bin/sh | ||
|
||
# | ||
# Command line runner for unit tests for composer projects | ||
# (c) Del 2015 http://www.babel.com.au/ | ||
# No Rights Reserved | ||
# | ||
|
||
# | ||
# Clean up after any previous test runs | ||
# | ||
mkdir -p documents | ||
rm -rf documents/coverage-html-new | ||
rm -f documents/coverage.xml | ||
|
||
# | ||
# Run phpunit | ||
# | ||
vendor/bin/phpunit --coverage-html documents/coverage-html-new --coverage-clover documents/coverage.xml | ||
|
||
if [ -d documents/coverage-html-new ]; then | ||
rm -rf documents/coverage-html | ||
mv documents/coverage-html-new documents/coverage-html | ||
fi | ||
|
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
Oops, something went wrong.