Home
last modified time | relevance | path

Searched refs:Yaml (Results 1 – 25 of 46) sorted by path

12

/plugin/combo/ComboStrap/
H A DTemplateForWebPage.php11 use Symfony\Component\Yaml\Yaml; alias
1105 $this->templateDefinition = Yaml::parseFile($file->toAbsoluteId());
/plugin/combo/
H A Dcomposer.lock790 "Symfony\\Component\\Yaml\\": ""
/plugin/combo/vendor/symfony/yaml/
H A DCHANGELOG.md27 Yaml::parse('072');
33 Yaml::parse('0o72');
49 * Added support to dump `null` as `~` by using the `Yaml::DUMP_NULL_AS_TILDE` flag.
73 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS`
79 * being able to pass boolean options to the `Yaml::parse()`, `Yaml::dump()`,
88 Yaml::parse('!foo bar', Yaml::PARSE_CUSTOM_TAGS);
95 * added support for parsing YAML files using the `Yaml::parseFile()` or `Parser::parseFile()` method
97 * the `Dumper`, `Parser`, and `Yaml` classe
[all...]
H A DDumper.php12 namespace Symfony\Component\Yaml;
14 use Symfony\Component\Yaml\Tag\TaggedValue;
47 * @param int $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string
55 if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($input instanceof \ArrayObject || $input instanceof \stdClass)) {
71 if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value) && false !== strpos($value, "\n") && false === strpos($value, "\r")) {
100 if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value->getValue()) && false !== strpos($value->getValue(), "\n") && false === strpos($value->getValue(), "\r\n")) {
125 if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \ArrayObject || $value instanceof \stdClass)) {
147 if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value->getValue()) && false !== strpos($value->getValue(), "\n") && false === strpos($value->getValue(), "\r\n")) {
H A DEscaper.php12 namespace Symfony\Component\Yaml;
H A DInline.php12 namespace Symfony\Component\Yaml;
14 use Symfony\Component\Yaml\Exception\DumpException;
15 use Symfony\Component\Yaml\Exception\ParseException;
16 use Symfony\Component\Yaml\Tag\TaggedValue;
39 self::$exceptionOnInvalidType = (bool) (Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE & $flags);
40 self::$objectSupport = (bool) (Yaml::PARSE_OBJECT & $flags);
41 self::$objectForMap = (bool) (Yaml::PARSE_OBJECT_FOR_MAP & $flags);
42 self::$constantSupport = (bool) (Yaml::PARSE_CONSTANT & $flags);
54 * @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
113 * @param int $flags A bit field of Yaml
[all...]
H A DParser.php12 namespace Symfony\Component\Yaml;
14 use Symfony\Component\Yaml\Exception\ParseException;
15 use Symfony\Component\Yaml\Tag\TaggedValue;
46 * @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
75 * @param int $flags A bit field of Yaml::PARSE_* constants to customize the YAML parser behavior
259 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $refValue instanceof \stdClass) {
276 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsed instanceof \stdClass) {
289 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsedItem instanceof \stdClass) {
336 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $value instanceof \stdClass) {
505 if (Yaml
[all...]
H A DREADME.md1 Yaml Component
4 The Yaml component loads and dumps YAML files.
H A DUnescaper.php12 namespace Symfony\Component\Yaml;
14 use Symfony\Component\Yaml\Exception\ParseException;
H A DYaml.php12 namespace Symfony\Component\Yaml;
14 use Symfony\Component\Yaml\Exception\ParseException;
17 * Yaml offers convenience methods to load and dump YAML.
23 class Yaml class
43 * $array = Yaml::parseFile('config.yml');
65 * $array = Yaml::parse(file_get_contents('config.yml'));
/plugin/combo/vendor/symfony/yaml/Command/
H A DLintCommand.php12 namespace Symfony\Component\Yaml\Command;
25 use Symfony\Component\Yaml\Exception\ParseException;
26 use Symfony\Component\Yaml\Parser;
27 use Symfony\Component\Yaml\Yaml; alias
108 $flags = $flags ? Yaml::PARSE_CUSTOM_TAGS : 0;
147 $this->getParser()->parse($content, Yaml::PARSE_CONSTANT | $flags);
/plugin/combo/vendor/symfony/yaml/Exception/
H A DDumpException.php12 namespace Symfony\Component\Yaml\Exception;
H A DExceptionInterface.php12 namespace Symfony\Component\Yaml\Exception;
H A DParseException.php12 namespace Symfony\Component\Yaml\Exception;
H A DRuntimeException.php12 namespace Symfony\Component\Yaml\Exception;
/plugin/combo/vendor/symfony/yaml/Resources/bin/
H A Dyaml-lint18 * Runs the Yaml lint command.
24 use Symfony\Component\Yaml\Command\LintCommand;
41 fwrite(STDERR, 'You need the "symfony/console" component in order to run the Yaml linter.'.PHP_EOL);
/plugin/combo/vendor/symfony/yaml/Tag/
H A DTaggedValue.php12 namespace Symfony\Component\Yaml\Tag;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md374 - [TEST] Client does not support accepting Yaml format responses [[fc9a9f9]](http://github.com/elasticsearch/elasticsearch-php/commit/fc9a9f9)
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md934 - Yaml driver for the parameter xml\_attribute\_map is broken [\#141](https://github.com/schmittjoh…
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DYamlDriver.php21 use Symfony\Component\Yaml\Yaml; alias
46 $config = Yaml::parse(file_get_contents($file));
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DTAP.php101 $yaml = new Symfony\Component\Yaml\Dumper;
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md26 * being able to pass boolean options to the `Yaml::parse()`, `Yaml::dump()`,
35 Yaml::parse('!foo bar', Yaml::PARSE_CUSTOM_TAGS);
44 * the `Dumper`, `Parser`, and `Yaml` classes are marked as final
76 Yaml::parse($yaml);
89 Yaml::parse($yaml);
99 Yaml::dump([], 0, 0, Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE);
112 Yaml::parse('!php/const:PHP_INT_MAX', Yaml::PARSE_CONSTANT);
122 through the `Yaml::DUMP_OBJECT_AS_MAP` flag.
135 Yaml::parse('2001-12-15 21:59:43.10 -5', Yaml::PARSE_DATETIME);
145Yaml::parse('{ "foo": "bar", "fiz": "cat" }', Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE | Yaml::PARSE_…
[all …]
H A DDumper.php12 namespace Symfony\Component\Yaml;
55 …if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($input instanceof \ArrayObject || $input instanceof \std…
65 …if ($inline >= 1 && Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value) && false !=…
80 …if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \ArrayObject || $value instanceof \std…
H A DEscaper.php12 namespace Symfony\Component\Yaml;
/plugin/findologicxmlexport/vendor/symfony/yaml/Command/
H A DLintCommand.php12 namespace Symfony\Component\Yaml\Command;
22 use Symfony\Component\Yaml\Exception\ParseException;
23 use Symfony\Component\Yaml\Parser;
24 use Symfony\Component\Yaml\Yaml; alias
88 $flags = $input->getOption('parse-tags') ? Yaml::PARSE_CUSTOM_TAGS : 0;
123 $this->getParser()->parse($content, Yaml::PARSE_CONSTANT | $flags);

12