aboutsummaryrefslogtreecommitdiff
path: root/composer.json
blob: 4c57b4791375be0c4ced9e6fb517ad473499e222 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
    "name": "nxp/math-executor",
    "description": "Simple math expressions calculator",
    "minimum-stability": "stable",
    "keywords": ["math","parser","expression","calculator"],
    "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/"}
    },
    "config": {
        "bin-dir": "bin"
    }
}