MathExecutor/composer.json

27 lines
619 B
JSON
Raw Normal View History

2013-03-14 04:27:37 +04:00
{
2013-03-14 04:32:43 +04:00
"name": "nxp/math-executor",
2013-03-14 04:27:37 +04:00
"description": "Simple math expressions calculator",
"minimum-stability": "stable",
2013-03-14 04:41:01 +04:00
"keywords": ["math","parser","expression","calculator"],
"homepage": "http://github.com/NeonXP/MathExecutor",
2017-03-10 15:29:42 +03:00
"license": "MIT",
2013-03-14 04:27:37 +04:00
"authors": [
{
"name": "Alexander 'NeonXP' Kiryukhin",
"email": "frei@neonxp.info"
}
],
2017-09-12 14:54:51 +03:00
"require": {
"php": ">=7.1"
2017-09-12 14:54:51 +03:00
},
"require-dev": {
"phpunit/phpunit": "~7.0"
2017-09-12 14:54:51 +03:00
},
2013-03-14 04:27:37 +04:00
"autoload": {
"psr-0": {"NXP": "src/"}
2017-09-12 14:54:51 +03:00
},
"config": {
"bin-dir": "bin"
2013-03-14 04:27:37 +04:00
}
}