-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
48 lines (48 loc) · 1.25 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
{
"name": "askerakbar/gpt-trix-editor",
"description": "GPT Trix Editor package extends the default Trix editor features in the Filament PHP framework.",
"keywords": [
"gpt-3",
"filament",
"gpt-trix-editor",
"filament-field-for-gpt-3",
"filament-3-grammar-check"
],
"require": {
"php": "^8.0",
"filament/filament": "^3.2",
"spatie/laravel-package-tools": "^1.12",
"openai-php/laravel": "^0.8.1",
"illuminate/contracts": "^11.0"
},
"license": "MIT",
"homepage": "https://github.com/askerakbar/gpt-trix-editor/",
"type": "library",
"autoload": {
"psr-4": {
"AskerAkbar\\GptTrixEditor\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"AskerAkbar\\GptTrixEditor\\GptTrixEditorServiceProvider"
]
}
},
"authors": [
{
"name": "Asker Akbar",
"homepage": "https://github.com/askerakbar/",
"role": "Developer"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}