twigc/composer.json
2018-06-02 01:48:22 -05:00

34 lines
816 B
JSON

{
"_comments": {
"symfony/finder": [
"This is only required for the Phar build, actually!",
"I added it to the regular requires just to fix a problem with Composer.",
"Some day i'd like to put it back..."
]
},
"name": "dana/twigc",
"description": "CLI tool for rendering Twig templates",
"homepage": "https://github.com/okdana/twigc",
"keywords": ["twig", "compile", "render", "template", "cli"],
"license": "MIT",
"require": {
"php": ">=7.0",
"symfony/console": "^4.0",
"symfony/finder": "^4.0",
"twig/twig": "^2.4",
"ulrichsg/getopt-php": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"autoload": {
"psr-4": {"Dana\\Twigc\\": "src/Twigc"}
},
"bin": ["bin/twigc"]
}