gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

README.md (363B)


      1 Yaml Component
      2 ==============
      3 
      4 YAML implements most of the YAML 1.2 specification.
      5 
      6 ```php
      7 use Symfony\Component\Yaml\Yaml;
      8 
      9 $array = Yaml::parse(file_get_contents(filename));
     10 
     11 print Yaml::dump($array);
     12 ```
     13 
     14 Resources
     15 ---------
     16 
     17 You can run the unit tests with the following command:
     18 
     19     $ cd path/to/Symfony/Component/Yaml/
     20     $ composer install
     21     $ phpunit