Lines Matching +full:php +full:- +full:lint

5 ---
7 * Add new `lint:yaml dirname --exclude=/dirname/foo.yaml --exclude=/dirname/bar.yaml`
9 * Allow negatable for the parse tags option with `--no-parse-tags`
12 ---
18 -----
36 * Added `yaml-lint` binary.
37 * Deprecated using the `!php/object` and `!php/const` tags without a value.
40 -----
42 * Removed support for mappings inside multi-line strings.
43 …* removed support for implicit STDIN usage in the `lint:yaml` command, use `lint:yaml -` (append a…
46 -----
50 …* deprecated accepting STDIN implicitly when using the `lint:yaml` command, use `lint:yaml -` (app…
53 -----
55 …* Using a mapping inside a multi-line string is deprecated and will throw a `ParseException` in 5.…
58 -----
63 -----
65 * The behavior of the non-specific tag `!` is changed and now forces
66 non-evaluating your values.
70 * support for the `!!php/object` tag has been dropped, use the `!php/object`
73 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS`
93 -----
99 * Deprecated the `!php/object:` tag which will be replaced by the
100 `!php/object` tag (without the colon) in 4.0.
102 * Deprecated the `!php/const:` tag which will be replaced by the
103 `!php/const` tag (without the colon) in 4.0.
107 * Deprecated using the non-specific tag `!` as its behavior will change in 4.0.
108 It will force non-evaluating your values in 4.0. Use plain integers or `!!float` instead.
111 -----
116 * Deprecated support for implicitly parsing non-string mapping keys as strings.
118 4.0. Use quotes to opt-in for keys to be parsed as strings.
122 ```php
134 ```php
149 * Added support for dumping empty PHP arrays as YAML sequences:
151 ```php
156 -----
162 * Added support for parsing PHP constants:
164 ```php
165 Yaml::parse('!php/const:PHP_INT_MAX', Yaml::PARSE_CONSTANT);
172 -----
177 * Strings that are not UTF-8 encoded will be dumped as base64 encoded binary
187 ```php
188 Yaml::parse('2001-12-15 21:59:43.10 -5', Yaml::PARSE_DATETIME);
197 ```php
203 ```php
208 -----
211 in double-quoted strings
214 -----
218 * When surrounding strings with double-quotes, you must now escape `\` characters. Not
219 escaping those characters (when surrounded by double-quotes) is deprecated.
234 -----
236 * Yaml::parse() does not evaluate loaded files as PHP files by default