-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
80 lines (80 loc) · 2.04 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
73
74
75
76
77
78
79
80
{
"name": "qwen-php/qwen-laravel",
"description": "A seamless Laravel integration for the qwen PHP client, enabling effortless interaction with the qwen API in your Laravel applications.",
"keywords": [
"qwen-php",
"qwen-laravel",
"qwen-coder",
"qwen-coder",
"alibabaai",
"alibaba-ai",
"alibaba-api",
"alibaba-cloud",
"qwen-php-client",
"qwen-api",
"laravel-ai",
"laravel-qwen",
"qwen-package",
"php-qwen",
"qwen-integration",
"qwen-integration",
"openai"
],
"homepage": "https://github.com/qwen-php/qwen-laravel",
"license": "MIT",
"type": "library",
"version": "1.0.0",
"authors": [
{
"name": "qwen-php",
"email": "[email protected]",
"role": "Owner"
},
{
"name": "Omar Alalwi",
"email": "[email protected]",
"role": "creator"
}
],
"require": {
"php": "^8.1.0",
"qwen-php/qwen-php-client": "^1.0.1",
"illuminate/support": "^9.0|^10.0|^11.0",
"nyholm/psr7": "^1.8",
"symfony/http-client": "^7.2"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Qwen\\QwenLaravel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Qwen\\QwenLaravel\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"Qwen\\QwenLaravel\\QwenLaravelServiceProvider"
],
"aliases": {
"QwenLaravel": "Qwen\\QwenLaravel\\QwenLaravelFacade"
}
}
}
}