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
- Host: GitHub
- URL: https://github.com/arnaud-lb/twigshellbundle
- Owner: arnaud-lb
- Created: 2012-09-19T22:22:13.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-19T12:53:01.000Z (over 12 years ago)
- Last Synced: 2024-05-01T22:56:00.446Z (about 1 year ago)
- Language: PHP
- Size: 113 KB
- Stars: 8
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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