-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.16 KB
/
composer.json
File metadata and controls
48 lines (48 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
{
"name": "likokiko/opencensorapi",
"description": "OpenCensorAPI - Hebrew profanity detection API service. A PHP based proxy API that connects to an AI service for Hebrew text analysis using the OpenCensor-Hebrew model.",
"type": "project",
"keywords": [
"hebrew",
"profanity-detection",
"text-analysis",
"api",
"php",
"opencensor",
"nlp",
"content-moderation"
],
"homepage": "https://github.com/LikoKiko/OpenCensor-API",
"license": "MIT",
"authors": [
{
"name": "LikoKiko",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^7.9",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"OpenCensorAPI\\": "includes/"
}
},
"config": {
"platform-check": false,
"optimize-autoloader": true,
"classmap-authoritative": true,
"apcu-autoloader": false,
"sort-packages": true
},
"scripts": {
"serve": "php -S localhost:8000 -t api/",
"test": "echo \"No tests configured yet\""
},
"support": {
"issues": "https://github.com/LikoKiko/OpenCensor-API/issues",
"source": "https://github.com/LikoKiko/OpenCensor-API"
}
}