MathExecutor/composer.json
Alexander Kiryukhin 949334d6c3
WIP: New generation (#62)
* Massive refactoring

More clean structure
Parsing without regular expressions

* Cleanup unused imports

* Fix version string for Travis

* 7.1 downgrade

* Fix readme
2020-05-19 23:04:31 -04:00

37 lines
663 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"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "~7.0"
},
"autoload": {
"psr-0": {
"NXP": "src/"
}
}
}