This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
87 lines (87 loc) · 2.49 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
81
82
83
84
85
86
87
{
"name": "adrianmejias/laravel-open-ai",
"description": "Open AI wrapper for Laravel Framework.",
"keywords": [
"open-ai",
"wrapper",
"api",
"laravel"
],
"homepage": "https://github.com/adrianmejias/laravel-open-ai",
"license": "MIT",
"support": {
"issues": "https://github.com/adrianmejias/laravel-open-ai/issues",
"forum": "https://twitter.com/adrianmejias",
"source": "https://github.com/adrianmejias/laravel-open-ai"
},
"authors": [
{
"name": "Adrian Mejias",
"email": "[email protected]",
"homepage": "https://adrianmejias.com"
}
],
"require": {
"php": "^8.0|^8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.4",
"illuminate/support": "^8.42|^9.21"
},
"autoload": {
"psr-4": {
"AdrianMejias\\OpenAi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AdrianMejias\\OpenAi\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.23",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/php-code-coverage": "^9.2",
"pestphp/pest": "^1.21"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"laravel": {
"providers": [
"AdrianMejias\\OpenAi\\OpenAiServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"test": [
"@test-unit",
"@test-feature"
],
"analyse": "vendor/bin/phpstan analyse",
"test-unit": "vendor/bin/pest --testsuite Unit",
"test-feature": "vendor/bin/pest --testsuite Feature",
"test-coverage": "vendor/bin/pest --coverage-clover clover.xml",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}