-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.85 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "moderyo/sdk",
"description": "Official PHP SDK for Moderyo Content Moderation API",
"type": "library",
"license": "MIT",
"keywords": [
"moderyo",
"moderation",
"content-moderation",
"safety",
"ai",
"trust-safety"
],
"authors": [
{
"name": "Moderyo",
"email": "dev@moderyo.com",
"homepage": "https://moderyo.com"
}
],
"homepage": "https://github.com/moderyo/moderyo-php",
"support": {
"issues": "https://github.com/moderyo/moderyo-php/issues",
"docs": "https://docs.moderyo.com/sdk/php"
},
"require": {
"php": "^8.4",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"psr/http-client": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.0"
},
"autoload": {
"psr-4": {
"Moderyo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Moderyo\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"analyse": "phpstan analyse src --level=8",
"cs": "phpcs src --standard=PSR12",
"cs:fix": "phpcbf src --standard=PSR12"
},
"extra": {
"laravel": {
"providers": [
"Moderyo\\Laravel\\ModeryoServiceProvider"
],
"aliases": {
"Moderyo": "Moderyo\\Laravel\\Facades\\Moderyo"
}
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}