{
  "name": "youniwemi/string-template",
  "type": "library",
  "description": "StringTemplate is a very simple but powefull string template engine for php. It allows named and nested substutions as well as conditionnals et custom filters (originaly a fork of nicmart/StringTemplate)",
  "keywords": [],
  "license": "MIT",
  "authors": [
    {
      "name": "Nicolò Martini",
      "email": "nicmartnic@gmail.com"
    },
    {
      "name": "Rahal Aboulfeth",
      "email": "rahal.aboulfeth@gmail.com"
    }
  ],
  "require": {
    "php": ">=7.2"
  },
  "require-dev": {
    "phpunit/phpunit": "^8 || ^9"
  },
  "scripts": {
    "test": "vendor/bin/phpunit",
    "bench": "php benchmarks/engine.php"
  },
  "autoload": {
    "psr-4": {
      "Youniwemi\\StringTemplate\\": "src/StringTemplate/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Youniwemi\\StringTemplate\\Test\\": "tests/StringTemplate/"
    }
  }
}
