Symfony Yaml Component
github.com/ktomk/yaml
Homepage
Source
Installs: 22 765
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 132
Requires
Requires (Dev)
Suggests
None
Provides
Conflicts
Replaces
MIT 8458406361d466d55913f6dfdbc5063175421b3f
This package is auto-updated.
Last update: 2024-10-17 23:42:48 UTC
YAML implements most of the YAML 1.2 specification.
use Symfony\Component\Yaml\Yaml; $array = Yaml::parse(file_get_contents(filename)); print Yaml::dump($array);
You can run the unit tests with the following command:
$ cd path/to/Symfony/Component/Yaml/ $ composer install $ phpunit