aboutsummaryrefslogtreecommitdiff
path: root/composer.json
blob: 7ebd7529113bac336e376be58fd94f42e2f9dcc9 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  "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": ">=7.3"
  },
  "require-dev": {
    "phpunit/phpunit": ">=9.0"
  },
  "autoload": {
    "psr-4": {
      "NXP\\": "src/NXP"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "NXP\\Tests\\": "tests/"
    }
  }
}