Merge pull request #317 from WinterSilence/patch-2

Update composer.json
This commit is contained in:
Maxim Kostjukevich 2020-04-27 10:21:04 +04:00 committed by GitHub
commit 5e8530524b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 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,20 @@
}
],
"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-4": {
"Fenom\\": "src/Fenom/"
},
"psr-0": {
"Fenom": "src/"
},
"classmap": ["src/"]
}
}