tao-test/app/vendor/oat-sa/lib-beeme/composer.json

34 lines
792 B
JSON
Raw Normal View History

2022-08-29 20:14:13 +02:00
{
"name": "oat-sa/lib-beeme",
"type": "library",
"description": "Simple mathematical expression/equation parser and calculator.",
"keywords": ["math parser", "shunting-yard algorithm", "math calculator"],
"license": "MIT",
"authors": [
{
"name": "Adrean Boyadzhiev",
"email": "adrean.boyadzhiev@gmail.com"
},
{
"name": "Jérôme Bogaerts",
"email": "jerome@taotesting.com"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.3"
},
"autoload": {
"psr-4": {
"oat\\beeme\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"oat\\beeme\tests\\": "tests\beeme"
}
}
}