MathExecutor/composer.json
Alexander Kiryukhin ea898d7a7b
Code style fixes & Github Actions (#65)
* Code style fixes

Up phpunit to v8
New CI

* Remove travis

* Fix CI badge

* Added php-cs-fixer action
2020-05-31 20:50:39 -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": "~8.0"
},
"autoload": {
"psr-0": {
"NXP": "src/"
}
}
}