twigc/composer.json

34 lines
816 B
JSON
Raw Normal View History

2016-07-24 19:40:36 +02:00
{
2018-06-02 08:47:05 +02:00
"_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..."
]
},
2016-07-24 19:40:36 +02:00
2018-06-02 08:47:05 +02:00
"name": "dana/twigc",
"description": "CLI tool for rendering Twig templates",
"homepage": "https://github.com/okdana/twigc",
"keywords": ["twig", "compile", "render", "template", "cli"],
"license": "MIT",
2016-07-24 19:40:36 +02:00
2018-06-02 08:47:05 +02:00
"require": {
"php": ">=7.0",
"symfony/console": "^4.0",
"symfony/finder": "^4.0",
"twig/twig": "^2.4",
"ulrichsg/getopt-php": "^3.1"
},
2016-07-24 19:40:36 +02:00
2018-06-02 08:47:05 +02:00
"require-dev": {
"phpunit/phpunit": "^6.5"
},
2016-07-24 19:40:36 +02:00
2018-06-02 08:47:05 +02:00
"autoload": {
"psr-4": {"Dana\\Twigc\\": "src/Twigc"}
},
2016-07-24 19:40:36 +02:00
2018-06-02 08:47:05 +02:00
"bin": ["bin/twigc"]
}