Update composer.json

5.4
This commit is contained in:
Anton 2020-04-12 06:31:56 +03:00 committed by GitHub
parent 8e2d64f4a6
commit afe6daadf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
"name": "fenom/fenom",
"type": "library",
"description": "Fenom - excellent template engine for PHP",
"keywords": ["fenom", "template", "templating", "templater"],
"keywords": ["fenom", "template", "templating", "templater", "php"],
"license": "BSD-3",
"authors": [
{
@ -11,15 +11,15 @@
}
],
"require": {
"php": ">=5.3.0",
"php": ">=5.4",
"ext-tokenizer": "*"
},
"require-dev": {
"phpunit/phpunit": "<6.0",
"phpunit/phpunit": ">=6.0",
"satooshi/php-coveralls": "*"
},
"autoload": {
"psr-0": { "Fenom\\": "src/" },
"classmap": [ "src/Fenom.php" ]
"psr-0": { "Fenom\\": "src/Fenom/", "Fenom": "src/" },
"classmap": [ "src/" ]
}
}