aboutsummaryrefslogtreecommitdiff
path: root/composer.json
blob: fc6c4d9f50cab3810abf27d9f70d7983e20074fa (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
{
  "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"
    }
  ],
  "require": {
    "php": ">=7.1"
  },
  "require-dev": {
    "phpunit/phpunit": ">=8.0"
  },
  "autoload": {
    "psr-0": {
      "NXP": "src/"
    }
  }
}