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: YtsFlowCollections.yml
Close
--- test: Simple Inline Array brief: > Sequences can be contained on a single line, using the inline syntax. Separate each entry with commas and enclose in square brackets. yaml: | seq: [ a, b, c ] php: | ['seq' => ['a', 'b', 'c']] --- test: Simple Inline Hash brief: > Mapping can also be contained on a single line, using the inline syntax. Each key-value pair is separated by a colon, with a comma between each entry in the mapping. Enclose with curly braces. yaml: | hash: { name: Steve, foo: bar } php: | ['hash' => ['name' => 'Steve', 'foo' => 'bar']] --- test: Multi-line Inline Collections todo: true brief: > Both inline sequences and inline mappings can span multiple lines, provided that you indent the additional lines. yaml: | languages: [ Ruby, Perl, Python ] websites: { YAML: yaml.org, Ruby: ruby-lang.org, Python: python.org, Perl: use.perl.org } php: | [ 'languages' => ['Ruby', 'Perl', 'Python'], 'websites' => [ 'YAML' => 'yaml.org', 'Ruby' => 'ruby-lang.org', 'Python' => 'python.org', 'Perl' => 'use.perl.org' ] ] --- test: Commas in Values (not in the spec!) todo: true brief: > List items in collections are delimited by commas, but there must be a space after each comma. This allows you to add numbers without quoting. yaml: | attendances: [ 45,123, 70,000, 17,222 ] php: | ['attendances' => [45123, 70000, 17222]]