-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.09 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 2.09 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
{
"name": "padosoft/product-image-discovery",
"description": "Laravel package for conservative product image discovery, verification, scoring, download, and manual review workflows.",
"type": "library",
"license": "Apache-2.0",
"keywords": [
"laravel",
"product-images",
"image-discovery",
"image-verification",
"scraping",
"sanctum",
"horizon",
"playwright",
"ai"
],
"authors": [
{
"name": "Lorenzo Padovani",
"email": "lorenzo.padovani@padosoft.com"
}
],
"require": {
"php": "^8.3",
"illuminate/bus": "^13.0",
"illuminate/cache": "^13.0",
"illuminate/console": "^13.0",
"illuminate/contracts": "^13.0",
"illuminate/database": "^13.0",
"illuminate/filesystem": "^13.0",
"illuminate/http": "^13.0",
"illuminate/log": "^13.0",
"illuminate/queue": "^13.0",
"illuminate/routing": "^13.0",
"illuminate/support": "^13.0",
"illuminate/validation": "^13.0",
"laravel/ai": "^0.6.5",
"laravel/sanctum": "^4.2",
"padosoft/laravel-ai-regolo": "^0.2.3",
"padosoft/laravel-ai-search-providers": "^1.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"orchestra/testbench": "^11.0",
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
"Padosoft\\ProductImageDiscovery\\": "src/",
"Padosoft\\ProductImageDiscovery\\Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Padosoft\\ProductImageDiscovery\\Tests\\": "tests/",
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Padosoft\\ProductImageDiscovery\\ProductImageDiscoveryServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}