OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
symfony
/
yaml
/
Tests
/
Fixtures
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:21 AM
rwxr-xr-x
📄
FooBackedEnum.php
118 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
FooUnitEnum.php
100 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsAnchorAlias.yml
870 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsBasicTests.yml
4.79 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsBlockMapping.yml
950 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsDocumentSeparator.yml
1.56 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsErrorTests.yml
645 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsFlowCollections.yml
1.6 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsFoldedScalars.yml
4.01 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsNullsAndEmpties.yml
698 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsSpecificationExamples.yml
41.4 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
YtsTypeTransfers.yml
6.49 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
arrow.gif
185 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
booleanMappingKeys.yml
149 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
embededPhp.yml
32 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
escapedCharacters.yml
2.33 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
index.yml
330 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
nonStringKeys.yml
62 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
not_readable.yml
330 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
nullMappingKey.yml
107 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
numericMappingKeys.yml
393 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfComments.yml
1.97 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfCompact.yml
2.84 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfMergeKey.yml
2.32 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfObjects.yml
290 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfQuotes.yml
761 bytes
08/07/2024 04:34:22 AM
rw-r--r--
📄
sfTests.yml
2.19 KB
08/07/2024 04:34:22 AM
rw-r--r--
📄
unindentedCollections.yml
1.75 KB
08/07/2024 04:34:22 AM
rw-r--r--
Editing: sfTests.yml
Close
--- %YAML:1.0 test: Multiple quoted string on one line brief: > Multiple quoted string on one line yaml: | stripped_title: { name: "foo bar", help: "bar foo" } php: | ['stripped_title' => ['name' => 'foo bar', 'help' => 'bar foo']] --- test: Empty sequence yaml: | foo: [ ] php: | ['foo' => []] --- test: Empty value yaml: | foo: php: | ['foo' => null] --- test: Inline string parsing brief: > Inline string parsing yaml: | test: ['complex: string', 'another [string]'] php: | ['test' => ['complex: string', 'another [string]']] --- test: Boolean brief: > Boolean yaml: | - false - true - null - ~ - 'false' - 'true' - 'null' - '~' php: | [ false, true, null, null, 'false', 'true', 'null', '~', ] --- test: Empty lines in literal blocks brief: > Empty lines in literal blocks yaml: | foo: bar: | foo bar php: | ['foo' => ['bar' => "foo\n\n\n \nbar\n"]] --- test: Empty lines in folded blocks brief: > Empty lines in folded blocks yaml: | foo: bar: > foo bar php: | ['foo' => ['bar' => "\nfoo\n\nbar\n"]] --- test: IP addresses brief: > IP addresses yaml: | foo: 10.0.0.2 php: | ['foo' => '10.0.0.2'] --- test: A sequence with an embedded mapping brief: > A sequence with an embedded mapping yaml: | - foo - bar: { bar: foo } php: | ['foo', ['bar' => ['bar' => 'foo']]] --- test: Octal strings brief: Octal notation in a string must remain a string yaml: | foo: "0123" php: | ['foo' => '0123'] --- test: Octal strings brief: Octal notation in a string must remain a string yaml: | foo: '0123' php: | ['foo' => '0123'] --- test: Octal strings brief: Octal notation in a string must remain a string yaml: | foo: | 0123 php: | ['foo' => "0123\n"] --- test: Document as a simple hash brief: Document as a simple hash yaml: | { foo: bar } php: | ['foo' => 'bar'] --- test: Document as a simple array brief: Document as a simple array yaml: | [ foo, bar ] php: | ['foo', 'bar']