aboutsummaryrefslogblamecommitdiff
path: root/composer.json
blob: 6c2dd75bdfd1d8d9cc0b45b0fa9f00e7f64df28b (plain) (tree)
1
 
















                                                      
      





                                      
                  

                  
                              

               






                              
     
   
 
{
  "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.2"
  },
  "require-dev": {
    "phpunit/phpunit": ">=8.0"
  },
  "autoload": {
    "psr-4": {
      "NXP\\": "src/NXP"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "NXP\\Tests\\": "tests/"
    }
  }
}