-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.77 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
{
"name": "reliqarts/laravel-auto-translator",
"description": "Automatic translations for Laravel.",
"keywords": [
"reliqarts",
"auto-translator",
"translation",
"language"
],
"homepage": "https://github.com/reliqarts/laravel-auto-translator",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ReliqArts\\AutoTranslator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReliqArts\\AutoTranslator\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "reliq",
"email": "reliq@reliqarts.com"
}
],
"require": {
"php": "^8.2",
"deeplcom/deepl-php": "^1.5",
"illuminate/support": "^8.0|^9.0|^10|^11.0",
"kkomelin/laravel-translatable-string-exporter": "^1.21",
"reliqarts/laravel-common": "^7.0|^8.0",
"stichoza/google-translate-php": "^5.1"
},
"require-dev": {
"laravel/pint": "^1.13",
"orchestra/testbench": "^8.12|^9.2",
"phpro/grumphp": "^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.6|^11.0",
"yieldstudio/grumphp-laravel-pint": "^1.0"
},
"scripts": {
"test": "phpunit",
"test:ci": "phpunit --coverage-clover=./build/coverage.xml",
"test:unit": "phpunit --testsuite=Unit --coverage-clover=./build/coverage.xml"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"php-http/discovery": true
},
"sort-packages": true
},
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"ReliqArts\\AutoTranslator\\ServiceProvider"
]
}
}
}