Download the PHP package shel/yaml-splitter without Composer
On this page you can find all versions of the php package shel/yaml-splitter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download shel/yaml-splitter
More information about shel/yaml-splitter
Files in shel/yaml-splitter
Package yaml-splitter
Short Description Splits YAML files
License MIT
Homepage https://www.helzle.it
Informations about the package yaml-splitter
Neos CMS node type YAML file splitter and reorganizer
Features:
- split YAML files containing multiple nodetypes into separate files each containing one nodetype
- reorganize nodetypes files from the old style
Configuration
folder to the newNodeTypes
folder and will also create subfolders based on their naming scheme
Installation
Recommended
Download the Phar version of the latest release.
You can find it after the individual change log in the Assets
section.
Afterwards you should make the file executable by running
Now you can follow the usage examples below.
Via composer
Add this tool as dependency to your project via
Or install the package globally via
Afterwards you can run the commands in your project by prefixing the usage examples like this:
Usage
List commands
./yaml-splitter.phar list
Show options for split command
./yaml-splitter.phar help split
Split a file
./yaml-splitter.phar split [options] [--] <path> [<output-path>]
This will copy each node type found in the input file into a new file.
Each new file be have a name like NodeTypes.MyNodeType.yaml
.
Additionally, each filename will get a prefix after NodeTypes
like Document
, Content
or Mixin
based on the name of the actual node type.
Also, when the option package-key
is provided, node types matching the package key will
have the standard naming and others will get names like NodeTypes.Override.SomeOtherNodeType.yaml
.
Options
dry-run
allows seeing what would happen without writing any fileuse-folders
splits the nodetypes into a folder structure for Neos 7.2+package-key
allows to define the main package key of your node types, so node types with different package keys would be written toNodeTypes.Override.xyz
files.indentation
number of spaces for indentation in the resulting YAML files
Example
Reorganize the nodetypes in a Configuration folder into Neos 7.2+ nodetype subfolders
With Neos 7.2 it's possible to organize nodetypes into separate folders than Configuration
.
It also allows you to use subfolders.
With the following command you can move all NodeTypes.*.yaml
from a Configuration
folder into
another folder. They will automatically be put into subfolders based on their naming scheme.
So for example you have the following files in your Configuration
folder of your site package:
Now you run the reorganize
command:
After you execute the command you will have the following structure:
Note: If you still have multiple nodetypes inside one file, it's recommended to first run the split
command and then reorganize
.
Contributing
The tool is based on the Symfony console component.
Building the phar
First install box.
Then run
composer run compile