mossadal/math-parser

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "mossadal/math-parser",
    "description": "PHP parser for mathematical expressions, including elementary functions, variables and implicit multiplication. Also supports symbolic differentiation.",
    "keywords": ["parser", "mathematics" ],
    "homepage": "https://github.com/mossadal/math-parser",
    "license": "LGPL-3.0",
    "authors": [
        {
            "name": "Frank Wikström",
            "email": "frank@mossadal.se",
            "role": "Developer"
        }
    ],
    "require": {
        "php": ">=5.4.0"
    },
    "require-dev": {
        "phpunit/phpunit": "7.3.*",
        "phpunit/php-code-coverage": "6.0.*",
        "phpdocumentor/phpdocumentor": "2.*"
    },

    "autoload": {
        "psr-4": {"MathParser\\": "src/MathParser"}
    }
}