Heimdall/vendor/phpunit/php-text-template/composer.json

44 lines
956 B
JSON
Raw Normal View History

2018-02-01 20:01:12 +00:00
{
"name": "phpunit/php-text-template",
"description": "Simple template engine.",
"type": "library",
"keywords": [
"template"
],
"homepage": "https://github.com/sebastianbergmann/php-text-template/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/sebastianbergmann/php-text-template/issues"
},
2022-11-13 16:05:03 +00:00
"config": {
"platform": {
"php": "7.3.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
2018-02-01 20:01:12 +00:00
"require": {
2022-11-13 16:05:03 +00:00
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
2018-02-01 20:01:12 +00:00
},
"autoload": {
"classmap": [
"src/"
]
2022-11-13 16:05:03 +00:00
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
2018-02-01 20:01:12 +00:00
}
}