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: sfCompact.yml
Close
--- %YAML:1.0 test: Compact notation brief: | Compact notation for sets of mappings with single element yaml: | --- # products purchased - item : Super Hoop - item : Basketball quantity: 1 - item: name: Big Shoes nick: Biggies quantity: 1 php: | [ [ 'item' => 'Super Hoop', ], [ 'item' => 'Basketball', 'quantity' => 1, ], [ 'item' => [ 'name' => 'Big Shoes', 'nick' => 'Biggies' ], 'quantity' => 1 ] ] --- test: Compact notation combined with inline notation brief: | Combinations of compact and inline notation are allowed yaml: | --- items: - { item: Super Hoop, quantity: 1 } - [ Basketball, Big Shoes ] php: | [ 'items' => [ [ 'item' => 'Super Hoop', 'quantity' => 1, ], [ 'Basketball', 'Big Shoes' ] ] ] --- %YAML:1.0 test: Compact notation brief: | Compact notation for sets of mappings with single element yaml: | --- # products purchased - item : Super Hoop - item : Basketball quantity: 1 - item: name: Big Shoes nick: Biggies quantity: 1 php: | [ [ 'item' => 'Super Hoop', ], [ 'item' => 'Basketball', 'quantity' => 1, ], [ 'item' => [ 'name' => 'Big Shoes', 'nick' => 'Biggies' ], 'quantity' => 1 ] ] --- test: Compact notation combined with inline notation brief: | Combinations of compact and inline notation are allowed yaml: | --- items: - { item: Super Hoop, quantity: 1 } - [ Basketball, Big Shoes ] php: | [ 'items' => [ [ 'item' => 'Super Hoop', 'quantity' => 1, ], [ 'Basketball', 'Big Shoes' ] ] ] --- %YAML:1.0 test: Compact notation brief: | Compact notation for sets of mappings with single element yaml: | --- # products purchased - item : Super Hoop - item : Basketball quantity: 1 - item: name: Big Shoes nick: Biggies quantity: 1 php: | [ [ 'item' => 'Super Hoop', ], [ 'item' => 'Basketball', 'quantity' => 1, ], [ 'item' => [ 'name' => 'Big Shoes', 'nick' => 'Biggies' ], 'quantity' => 1 ] ] --- test: Compact notation combined with inline notation brief: | Combinations of compact and inline notation are allowed yaml: | --- items: - { item: Super Hoop, quantity: 1 } - [ Basketball, Big Shoes ] php: | [ 'items' => [ [ 'item' => 'Super Hoop', 'quantity' => 1, ], [ 'Basketball', 'Big Shoes' ] ] ]