-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcomposer.json
72 lines (72 loc) · 1.83 KB
/
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
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
{
"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": "library",
"require": {
"php": "^8.1",
"ext-ffi": "*",
"codewithkyrian/jinja-php": "^1.0",
"codewithkyrian/transformers-libsloader": "^2.0",
"imagine/imagine": "^1.3",
"rindow/rindow-math-matrix": "^2.0",
"rindow/rindow-matlib-ffi": "^1.0",
"rindow/rindow-openblas-ffi": "^1.0",
"symfony/console": "^6.4|^7.0",
"rokka/imagine-vips": "^0.31.0"
},
"require-dev": {
"pestphp/pest": "^2.31",
"symfony/var-dumper": "^7.0"
},
"suggest": {
"ext-imagick": "Required to use the Imagick Driver for image processing",
"ext-gd": "Required to use the GD Driver for image processing",
"rokka/imagine-vips": "Required to use the VIPS 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": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"codewithkyrian/transformers-libsloader": true
}
},
"bin": [
"bin/transformers"
],
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage",
"post-install-cmd": "Codewithkyrian\\Transformers\\Utils\\LibsChecker::check",
"post-update-cmd": "Codewithkyrian\\Transformers\\Utils\\LibsChecker::check"
},
"archive": {
"exclude": [
"/docs"
]
}
}