-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
81 lines (81 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "laravel-lang/status-generator",
"description": "Translation status generator for Laravel Lang projects",
"license": "MIT",
"keywords": [
"generator",
"languages",
"laravel",
"laravel-lang"
],
"authors": [
{
"name": "Andrey Helldar",
"email": "helldar@dragon-code.pro",
"homepage": "https://github.com/andrey-helldar"
},
{
"name": "Laravel-Lang Team",
"homepage": "https://github.com/Laravel-Lang"
}
],
"support": {
"issues": "https://github.com/Laravel-Lang/status-generator/issues",
"source": "https://github.com/Laravel-Lang/status-generator"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-zip": "*",
"archtechx/enums": "^0.3.2 || ^1.0",
"deeplcom/deepl-php": "^1.5",
"dragon-code/pretty-array": "^4.0",
"dragon-code/simple-dto": "^2.3",
"dragon-code/support": "^6.11",
"guzzlehttp/guzzle": "^7.4",
"illuminate/console": "^10.0 || ^11.0 || ^12.0",
"illuminate/container": "^10.0 || ^11.0 || ^12.0",
"laravel-lang/locale-list": "^1.2",
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
"stichoza/google-translate-php": "^5.1",
"symfony/console": "^6.0 || ^7.0",
"symfony/finder": "^6.0 || ^7.0"
},
"require-dev": {
"symfony/var-dumper": "^6.0 || ^7.0"
},
"conflict": {
"laravel-lang/lang": "<10.0",
"laravel-lang/publisher": "<14.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"LaravelLang\\StatusGeneratorTests\\": "tests-app/",
"LaravelLang\\StatusGenerator\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"bin/lang"
],
"config": {
"allow-plugins": {
"dragon-code/codestyler": true,
"ergebnis/composer-normalize": true,
"friendsofphp/php-cs-fixer": true,
"php-http/discovery": true,
"symfony/thanks": true
},
"preferred-install": "dist",
"sort-packages": true
}
}