-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 891 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 891 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
{
"name": "ankane/onnxruntime",
"description": "Run ONNX models in PHP",
"license": "MIT",
"support": {
"issues": "https://github.com/ankane/onnxruntime-php/issues",
"source": "https://github.com/ankane/onnxruntime-php"
},
"authors": [
{
"name": "Andrew Kane",
"email": "andrew@ankane.org"
}
],
"autoload": {
"psr-4": {
"OnnxRuntime\\": "src/"
}
},
"require": {
"php": ">= 8.2",
"ext-ffi": ">= 8.2"
},
"require-dev": {
"phpunit/phpunit": "^11"
},
"scripts": {
"test": "phpunit tests",
"valgrind": "valgrind --leak-check=full --trace-children=yes --error-exitcode=1 --quiet phpunit tests",
"post-install-cmd": "OnnxRuntime\\Vendor::check",
"post-update-cmd": "OnnxRuntime\\Vendor::check"
}
}