forked from ghostjat/Np
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.3 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.3 KB
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
{
"name": "ghostjat/numphp",
"description": "numphp is numerical library with low memory footprint for php language. Suitable for large scale computing. php7.4+ 64 bit is required!",
"type": "library",
"keywords": [
"arithmetic", "computation", "computing", "decomposition", "engineering",
"linear algebra", "math", "matrix", "norms", "php","blas","lapack",
"random number generation", "rng", "reduction", "scientific computing", "statistics",
"tensor", "vector", "trigonometry","statstics","numphp"
],
"homepage": "https://github.com/ghostjat/numphp",
"license": "MIT",
"authors": [
{
"name": "Shubham Chaudhary",
"email": "ghost.jat@gmail.com",
"role": "dev"
}
],
"support": {
"issues": "https://github.com/ghostjat/numphp/issues?state=open",
"source": "https://github.com/ghostjat/numphp",
"email":"ghost.jat@gmail.com"
},
"autoload": {
"psr-4": {
"numphp\\": "src/"
}
},
"require": {
"php": ">=8.0",
"ext-ffi": "*"
},
"autoload-dev": {
"psr-4": {
"numphp\\tests\\": "tests/",
"numphp\\benchmarks\\": "benchmarks/"
}
},
"config":{"optimize-autoloader":true}
}