1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"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": "frei@neonxp.info"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "~7.0"
},
"autoload": {
"psr-0": {"NXP": "src/"}
}
}
|