mauris / yaml
Mauris Build of the Symfony Yaml Component
1.0.0
2013-05-02 11:55 UTC
Requires
- php: >=5.3.3
This package is not auto-updated.
Last update: 2024-11-18 12:11:20 UTC
README
#Yaml Component
Yaml implements most of the YAML 1.2 specification.
use Symfony\Component\Yaml\Yaml;
$array = Yaml::parse($file);
print Yaml::dump($array);
##Installation
You can install Yaml through Composer:
{
"require": {
"mauris/yaml": "1.0.*"
}
}
Then run:
$ composer install
##Resources
You can run the unit tests with the following command:
$ cd path/to/Symfony/Component/Yaml/
$ composer.phar install --dev
$ phpunit