summaryrefslogtreecommitdiffstats
path: root/vendor/symfony/yaml/Symfony/Component/Yaml/README.md
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-05-05 19:34:39 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-05-05 19:34:39 +0200
commit705c4cb50eea66585cc95c7314001fce9dd197cd (patch)
tree4a448f4e30b117e12306b643121f49da15e6376b /vendor/symfony/yaml/Symfony/Component/Yaml/README.md
downloadCatalog-705c4cb50eea66585cc95c7314001fce9dd197cd.tar.gz
Catalog-705c4cb50eea66585cc95c7314001fce9dd197cd.zip
Initial commit
Diffstat (limited to 'vendor/symfony/yaml/Symfony/Component/Yaml/README.md')
-rw-r--r--vendor/symfony/yaml/Symfony/Component/Yaml/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/README.md b/vendor/symfony/yaml/Symfony/Component/Yaml/README.md
new file mode 100644
index 0000000..85a9786
--- /dev/null
+++ b/vendor/symfony/yaml/Symfony/Component/Yaml/README.md
@@ -0,0 +1,21 @@
+Yaml Component
+==============
+
+YAML implements most of the YAML 1.2 specification.
+
+```php
+use Symfony\Component\Yaml\Yaml;
+
+$array = Yaml::parse(file_get_contents(filename));
+
+print Yaml::dump($array);
+```
+
+Resources
+---------
+
+You can run the unit tests with the following command:
+
+ $ cd path/to/Symfony/Component/Yaml/
+ $ composer install
+ $ phpunit