-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.54 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
{
"name": "forxer/generic-term-translations-for-laravel",
"description": "A plugin for Laravel Lang that provides generic term translations for Laravel.",
"homepage": "https://github.com/forxer/generic-term-translations-for-laravel",
"license": "MIT",
"keywords": [
"laravel",
"languages",
"lang"
],
"authors": [
{
"name": "Vincent Garnier"
}
],
"support": {
"issues": "https://github.com/forxer/generic-term-translations-for-laravel/issues",
"source": "https://github.com/forxer/generic-term-translations-for-laravel"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"laravel-lang/publisher": "^14.1 || ^15.0 || ^16.0"
},
"require-dev": {
"illuminate/filesystem": "^10.46 || ^11.27.2",
"illuminate/support": "^10.46 || ^11.27.2",
"laravel-lang/status-generator": "^1.19 || ^2.11.3",
"laravel/pint": "^1.18.1",
"phpunit/phpunit": "^10.5.36",
"symfony/var-dumper": "^6.4.11"
},
"autoload": {
"psr-4": {
"GenericTermTranslations\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"GenericTermTranslations\\ServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}