surgiie / blade-cli
Use Laravel's blade engine from the command line to render files.
Installs: 413
Dependents: 0
Suggesters: 0
Security: 0
Stars: 34
Watchers: 0
Forks: 3
Open Issues: 0
Type:project
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.4
- illuminate/http: ^10.0
- intonate/tinker-zero: ^1.2
- surgiie/console: ^4.1.0
- symfony/yaml: ^6.2
Requires (Dev)
- laravel-zero/framework: ^10.0
- laravel/pint: ^1.2
- mockery/mockery: ^1.4.4
- pestphp/pest: ^1.21.3
- dev-master
- v4.1.0
- v4.0.0
- v3.11.0
- v3.10.0
- v3.9.0
- v3.8.0
- v3.7.5
- v3.7.4
- v3.7.3
- v3.7.2
- v3.7.1
- v3.7.0
- v3.6.0
- v3.5.0
- v3.4.3
- v3.4.2
- v3.4.1
- v3.4.0
- v3.3.0
- v3.2.0
- v3.1.0
- v3.0.0
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.1.2
- v0.1.1
- v0.1.0
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- dev-run-task
- dev-build-prep
- dev-remove-task
- dev-fix-class-issues
This package is auto-updated.
Last update: 2024-02-14 02:57:29 UTC
README
Abandoned
This has moved and been reworked and is no longer maintained, please use laravel-blade-cli
The Blade CLI allows you to compile and save any textual files from the command line using Laravel's Blade engine.
Installation
To install the binary, use composer globally:
composer global require surgiie/blade-cli
Use
As an example, let's say you have a file named person.yml
in your current directory with the following content:
name: {{ $name }} relationship: {{ $relationship }} favorite_food: {{ $favoriteFood }} @if($includeAddress) address: 123 example lane @endif
You can render this file using the following command:
blade render ./person.yml \ --name="Bob" \ --relationship="Uncle" \ --favorite-food="Pizza" \ --include-address
This will render the file and save it in the same directory with the name person.rendered.yml
with the following contents:
name: Bob relationship: Uncle favorite_food: Pizza address: 123 example lane
Rendering With Docker:
If you don't have or want to install php, you can run render files using the provided script which will run the cli render command in a temporary docker container and use volumes to mount the neccessary files and then sync them back to your host machine:
cd /tmp wget https://raw.githubusercontent.com/surgiie/blade-cli/master/docker chmod +x ./docker mv ./docker /usr/local/bin/blade blade <path> --var="example"
Custom Filename
By default, all files will be saved to the same directory as the file being rendered with the name <filename>.rendered.<extension>
or simply <filename>.rendered
, to prevent overwriting the original file. To use a custom file name or change the directory, use the --save-to
option to specify a file path:
blade render ./person.yml \
...
--save-to="/home/bob/custom-name.yml"
Note: The cli will automatically create the necessary parent directories if it has permission, otherwise an error will be thrown.
Variable Data
There are three options for passing variable data to your files being rendered, in order of precedence:
- Use YAML files with the
--from-yaml
option and pass a path to the file. This option can be used multiple times to load from multiple files. - Use JSON files with the
--from-json
option and pass a path to the file. This option can be used multiple times to load from multiple files. - Use env files with the
--from-env
option and pass a path to the .env file. This option can be used multiple times to load from multiple files. - Use arbitrary command line options with the render command, like
--example-var=value
.
Variable Naming Convention
Your env, YAML, and JSON file keys can be defined in any naming convention, but the actual variable references MUST be in camel case. This is because PHP does not support kebab case variables and since this is the format used in command line options, all variables will automatically be converted to camel case. For example, if you pass an option or define a variable name in your files in any of these formats: favorite-food
, favoriteFood
, or favorite_food
, the variable for that option should be referenced as $favoriteFood
in your files.
Command Line Variable Types
The following types of variables are currently supported:
- String/Single Value Variables: Use a single option key/value format, e.g.
--foo=bar --bar=baz
- Array Value Variables: Pass the option multiple times, e.g.
--names=Steve --names=Ricky --names=Bob
- True Boolean Value Variables: Pass the option with no value, e.g.
--should-do-thing
Note: Since variable options are dynamic, "negate/false" options are not supported. Instead, use something like {{ $shouldDoSomething ?? false }}
in your files to default to false and use true options to "negate" the value.
Force Write
If you try to render a file that already exists, an exception will be raised. To force overwrite an existing file, use the --force flag:
blade render ./person.yml \ --name="Bob" \ --relationship="Uncle" \ --favorite-food="Pizza" \ --include-address \ --force # force overwrite person.rendered.yml if it already exists.
Dry Run/Show Rendered Contents
To view the contents of a rendered file without saving it, use the --dry-run flag when rendering a single file:
blade render example.yaml --some-var=example --dry-run
This will display the contents of example.yaml on the terminal without saving it.
Processing an entire directory of files
You can also pass a directory path instead of a single file when running the command. This can be useful when you want to render multiple template files at once.
blade render ./templates --save-dir="/home/bob/templates" --some-data=foo
Note: This command will prompt you for confirmation. To skip confirmation, add the --force
flag.
Note: When rendering an entire directory, the --save-dir
option is required to export all rendered files to a separate directory. The directory structure of the directory being processed will be mirrored in the directory where the files are saved. In the above example, /home/bob/templates
will have the same directory structure as ./templates
.
Custom Compiled Directory
When compiling a file down to plain php, the compiled file is stored by default in /tmp/.blade-cli
, if you wish to use a custom directory for these files, you may use the --cache-path
option:
blade render myfile --var=foo --cache-path="/custom/directory"
When clearing the directory, this will also be required:
blade clear --cache-path="/custom/directory"
Or you can persist the path via the BLADE_CLI_CACHE_PATH
environment variable if you dont wish to pass it to every command call.
Contribute
Contributions are always welcome in the following manner:
- Issue Tracker
- Pull Requests
- Discussions
License
The project is licensed under the MIT license.