forked from mossadal/math-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (25 loc) · 782 Bytes
/
composer.json
File metadata and controls
26 lines (25 loc) · 782 Bytes
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": "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"}
}
}