-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.39 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "codewithkyrian/transformers",
"description": "State-of-the-art Machine Learning for PHP. Run Transformers in PHP",
"keywords": [
"transformers",
"transformers-php",
"AI",
"machine learning",
"nlp",
"natural language processing",
"php",
"codewithkyrian"
],
"type": "platform-package",
"require": {
"php": "^8.1",
"ext-ffi": "*",
"codewithkyrian/jinja-php": "^2.0",
"codewithkyrian/platform-package-installer": "^1.0",
"imagine/imagine": "^1.3",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"rindow/rindow-math-matrix": "^2.1",
"rindow/rindow-matlib-ffi": "^1.1",
"rindow/rindow-openblas-ffi": "^1.0",
"rokka/imagine-vips": "^0.40",
"symfony/console": "^6.4|^7.0|^8.0"
},
"require-dev": {
"ffi/var-dumper": "^1.0",
"pestphp/pest": "^2.36.0|^3.5.0",
"symfony/var-dumper": "^6.4.11|^7.1.5|^8.0"
},
"suggest": {
"ext-imagick": "Required to use the Imagick Driver for image processing",
"ext-gd": "Required to use the GD Driver for image processing"
},
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Codewithkyrian\\Transformers\\": "src/"
},
"files": [
"src/Pipelines/Pipeline.php",
"src/Utils/Helpers.php"
]
},
"authors": [
{
"name": "Kyrian Obikwelu",
"email": "koshnawaza@gmail.com"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"codewithkyrian/platform-package-installer": true
}
},
"bin": [
"bin/transformers"
],
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage"
},
"archive": {
"exclude": [
"/docs"
]
},
"extra": {
"platform-urls": {
"linux-x86_64": "https://github.com/codewithkyrian/transformers-php/releases/download/{version}/dist-linux-x86_64.tar.gz",
"linux-arm64": "https://github.com/codewithkyrian/transformers-php/releases/download/{version}/dist-linux-arm64.tar.gz",
"darwin-x86_64": "https://github.com/codewithkyrian/transformers-php/releases/download/{version}/dist-darwin-x86_64.tar.gz",
"darwin-arm64": "https://github.com/codewithkyrian/transformers-php/releases/download/{version}/dist-darwin-arm64.tar.gz",
"windows-x86_64": "https://github.com/codewithkyrian/transformers-php/releases/download/{version}/dist-windows-x86_64.zip"
}
}
}