-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 829 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 829 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
27
28
29
30
31
32
33
34
{
"name": "langleyfoxall/math_eval",
"description": "✖️➕➖➗ `math_eval` safely evaluates mathematical expressions",
"type": "library",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Jordan Hall",
"email": "jordan@langleyfoxall.co.uk"
}
],
"require": {
"php": ">=5.6",
"mossadal/math-parser": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"fzaninotto/faker": "^1.6",
"php-coveralls/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"LangleyFoxall\\MathEval\\": "src/"
},
"files": [
"src/math_eval.php"
]
},
"autoload-dev": {
"psr-4": {
"LangleyFoxall\\MathEval\\Tests\\": "tests/"
}
}
}