-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.16 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
{
"name": "laravel-lang/json-fallback",
"description": "Adds support for fallback JSON string translation",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Andrey Helldar",
"email": "helldar@dragon-code.pro",
"homepage": "https://github.com/andrey-helldar"
},
{
"name": "Felipe Dsdev",
"homepage": "https://github.com/felipe-dsdev"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0 || ^11.0",
"illuminate/translation": "^10.0 || ^11.0"
},
"require-dev": {
"orchestra/testbench": "^8.0 || ^9.0",
"phpunit/phpunit": "^10.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"LaravelLang\\JsonFallback\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dragon-code/codestyler": true,
"ergebnis/composer-normalize": true,
"friendsofphp/php-cs-fixer": true,
"symfony/thanks": true
}
}
}