forked from Itangalo/evalmath.class.php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 840 Bytes
/
composer.json
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
{
"name": "optimistex/math-expression",
"version": "2.2.0",
"type": "library",
"description": "Taken from http://www.phpclasses.org/browse/file/11680.html, cred to Miles Kaufmann",
"keywords": [
"math",
"expression",
"math expression",
"module"
],
"homepage": "https://github.com/optimistex/math-expression",
"license": "MIT",
"support": {
"issues": "https://github.com/optimistex/math-expression/issues"
},
"authors": [
{
"name": "optimistex",
"email": "[email protected]"
},
{
"name": "jcubic"
}
],
"autoload": {
"classmap": [
"expression.php"
],
"psr-4": {
"optimistex\\expression\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
},
"require": {
"php": "^5.4 || >=7.0 <8.1"
}
}