PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Eric Sizemore   Simple Template Engine   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple Template Engine
Template engine based on text replacement
Author: By
Last change: normalizing composer.json, updating .gitattributes
Dev dependency updates
Date: 8 months ago
Size: 1,484 bytes
 

Contents

Class file image Download
{ "name": "esi/simple_tpl", "description": "Simple TPL - A Simple Template Engine", "license": "GPL-3.0-or-later", "type": "library", "authors": [ { "name": "Eric Sizemore", "email": "admin@secondversion.com", "homepage": "https://www.secondversion.com/" } ], "support": { "issues": "https://github.com/ericsizemore/simple_tpl/issues", "forum": "https://github.com/ericsizemore/simple_tpl/discussions", "source": "https://github.com/ericsizemore/simple_tpl/tree/master", "security": "https://github.com/ericsizemore/simple_tpl/security/policy" }, "require": { "php": "^8.1 <8.5" }, "require-dev": { "phpstan/phpstan": "^1.11", "phpstan/phpstan-phpunit": "^1.4", "phpstan/phpstan-strict-rules": "^1.6", "phpunit/phpunit": "^10.5" }, "minimum-stability": "dev", "autoload": { "psr-4": { "Esi\\SimpleTpl\\": "src/" } }, "autoload-dev": { "psr-4": { "Esi\\SimpleTpl\\Tests\\": "tests/src/" } }, "extra": { "branch-alias": { "dev-master": "1.0-dev" } }, "scripts": { "phpstan": "vendor/bin/phpstan analyse -c phpstan.neon", "test": "phpunit --coverage-clover=build/logs/clover.xml --coverage-html=build/logs/coverage --display-deprecations --display-warnings --globals-backup" } }