An open API service indexing awesome lists of open source software.

https://github.com/arnaud-lb/twigshellbundle

Simple Twig Shell
https://github.com/arnaud-lb/twigshellbundle

Last synced: about 1 month ago
JSON representation

Simple Twig Shell

Awesome Lists containing this project

README

        

# Twig Shell Bundle

Provides a simple Twig REPL

## Example

$ ./app/console twig:shell
twig > 512*2
1024
twig > 512*2|number_format()
1024
twig > (512*2)|number_format()
1,024
twig >

## Install

```
$ composer require alb/twig-shell-bundle:*
```

## Enable the bundle

Enable the bundle in the kernel:

``` php