mirror of
https://github.com/smarty-php/smarty.git
synced 2026-02-03 22:05:33 +01:00
* Set $errcontext argument optional to support PHP 8 - Argument is optional and deprecated in PHP 7.2 * Getting ready for PHP8, handling changed error levels/handlers mostly * php5 compat syntax * Updated UndefinedTemplateVarTest for PHP8 (and disabled a check for PHP<5.6) and re-enabled php:nightly in travis config * Attempt to fix travis runs for (almost) all php versions supported * Fix unit tests for php8, force composer to think we are still php7 to pick a supported phpunit and being less specific about an error msg because PHP8 is in active development and the exact wording is changing. * Fixed a unit test that accidentally passed on phpunit < 7 because of sloppy string comparison. * changelog * run travis in xenial where possible for latest php versions. Fix unit tests from freakingo over inconsistent error messages in php8-beta. * Incorporated AnrDaemons suggestions, making composer figure out the required phpunit version instead of specifying it explicitly and removing a unneeded error supression (@). Co-authored-by: Jorge Sá Pereira <me@jorgesapereira.com>
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "smarty/smarty",
|
|
"type": "library",
|
|
"description": "Smarty - the compiling PHP template engine",
|
|
"keywords": [
|
|
"templating"
|
|
],
|
|
"homepage": "http://www.smarty.net",
|
|
"license": "LGPL-3.0",
|
|
"authors": [
|
|
{
|
|
"name": "Monte Ohrt",
|
|
"email": "monte@ohrt.com"
|
|
},
|
|
{
|
|
"name": "Uwe Tews",
|
|
"email": "uwe.tews@googlemail.com"
|
|
},
|
|
{
|
|
"name": "Rodney Rehm",
|
|
"email": "rodney.rehm@medialize.de"
|
|
}
|
|
],
|
|
"support": {
|
|
"irc": "irc://irc.freenode.org/smarty",
|
|
"issues": "https://github.com/smarty-php/smarty/issues",
|
|
"forum": "http://www.smarty.net/forums/"
|
|
},
|
|
"require": {
|
|
"php": ">=5.2"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"libs/"
|
|
]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.1.x-dev"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7.5 || ^6.5 || ^5.7 || ^4.8",
|
|
"smarty/smarty-lexer": "^3.1"
|
|
}
|
|
}
|