PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Alexander Kiryukhin   PHP Math Expression Evaluator   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Math Expression Evaluator
Parse and evaluate strings with math expressions
Author: By
Last change: Update of composer.json
Date: 2 months ago
Size: 961 bytes
 

Contents

Class file image Download
{ "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" } ], "scripts": { "test": "vendor/bin/phpunit --colors=always", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "require": { "php": ">=8.0 <8.4" }, "require-dev": { "phpunit/phpunit": ">=9.0", "friendsofphp/php-cs-fixer": "^3.8", "phpstan/phpstan": "^1.9" }, "autoload": { "psr-4": { "NXP\\": "src/NXP" } }, "autoload-dev": { "psr-4": { "NXP\\Tests\\": "tests/" } } }