diff options
Diffstat (limited to 'yamlishwriter-php-v0.0.1/README')
-rw-r--r-- | yamlishwriter-php-v0.0.1/README | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/yamlishwriter-php-v0.0.1/README b/yamlishwriter-php-v0.0.1/README deleted file mode 100644 index bbd6204..0000000 --- a/yamlishwriter-php-v0.0.1/README +++ /dev/null @@ -1,33 +0,0 @@ -YAMLishWriter.php Version 0.0.1 - -This is a simple implementation of a YAMLish writer for PHP. See - - http://testanything.org/wiki/index.php/YAMLish - -for more information about YAMLish. - -You can find the YAMLishWriter class in lib/yamlishwriter.php in this -distribution. YAMLishWriter is a self contained PHP class. To use it - - // Or wherever it is on your include path - include('yamlishwriter.php'); - - // And then later - $writer = new YAMLishWriter; - - $data = array( 'got' => 1, 'expected' => 2 ); - $output = $writer->write($data); - -The returned value is an array containing the lines of YAMLish. - -This distribution contains a rudimentary test harness for which you'll -need Perl prove command. To run the tests edit Makefile to reflect the -location of your php command and then - - make test - -Copyright 2007 Andy Armstrong, andy@hexten.net. - -YAMLishWriter is distributed under Perl Artistic Licence: - - http://www.opensource.org/licenses/artistic-license.php |