MathExecutor/composer.json

48 lines
925 B
JSON
Raw Normal View History

2013-03-14 04:27:37 +04:00
{
"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"
2017-09-12 14:54:51 +03:00
},
{
"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"
},
"autoload": {
"psr-4": {
"NXP\\": "src/NXP"
}
},
"autoload-dev": {
"psr-4": {
"NXP\\Tests\\": "tests/"
2013-03-14 04:27:37 +04:00
}
}
2013-03-14 04:27:37 +04:00
}