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