mauris / yaml
Mauris Build of the Symfony Yaml Component
Installs: 886
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 131
pkg:composer/mauris/yaml
Requires
- php: >=5.3.3
This package is not auto-updated.
Last update: 2025-10-06 16:40:35 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