MathExecutor/composer.json
Bruce Wells 7704ba918f
Drop php74 (#120)
* PHPStan Level 6

* Drop PHP 7.4 support

* Add PHPStan badge to readme

* Code style cleanup
2022-12-21 18:52:18 -05:00

49 lines
956 B
JSON

{
"name": "nxp/math-executor",
"description": "Simple math expressions calculator",
"minimum-stability": "stable",
"keywords": [
"math",
"parser",
"expression",
"calculator",
"formula",
"mathmatics"
],
"homepage": "http://github.com/NeonXP/MathExecutor",
"license": "MIT",
"authors": [
{
"name": "Alexander 'NeonXP' Kiryukhin",
"email": "a.kiryukhin@mail.ru"
},
{
"name": "Bruce Wells",
"email": "brucekwells@gmail.com"
}
],
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": ">=9.0",
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {
"NXP\\": "src/NXP"
}
},
"autoload-dev": {
"psr-4": {
"NXP\\Tests\\": "tests/"
}
}
}