-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.16 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.16 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
{
"name": "rcerljenko/laravel-openai-moderation",
"license": "MIT",
"description": "Laravel package for OpenAI Moderation API",
"homepage": "https://github.com/rcerljenko/laravel-openai-moderation",
"authors": [
{
"name": "Ricardo Cerljenko",
"email": "ricardo.cerljenko@gmail.com",
"homepage": "https://github.com/rcerljenko"
}
],
"support": {
"email": "ricardo.cerljenko@gmail.com"
},
"require": {
"php": "^8.1",
"illuminate/http": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14"
},
"autoload": {
"psr-4": {
"RCerljenko\\LaravelOpenAIModeration\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"RCerljenko\\LaravelOpenAIModeration\\ServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": "@php -r \"copy('pre-commit.sh', '.git/hooks/pre-commit');\"",
"check-format": "php-cs-fixer fix --dry-run",
"format": "php-cs-fixer fix"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": true
},
"minimum-stability": "dev",
"prefer-stable": true
}