-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.72 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
{
"name": "ferdiunal/nova-translations",
"description": "A Laravel Nova Translations",
"keywords": [
"laravel",
"nova",
"nova-tool",
"translations",
"spatie",
"spatie-translatable"
],
"authors": [
{
"name": "Ferdi Ünal",
"email": "ferdiunal@outlook.com",
"homepage": "https://gitub.com/ferdiunal",
"role": "Developer"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ferdiunal"
},
{
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/ferdiunal"
}
],
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"license": "MIT",
"require": {
"php": "^8.2|^8.3",
"laravel/framework": "^11.0",
"laravel/nova": "^4.0",
"nyholm/psr7": "^1.8",
"spatie/laravel-translatable": "^6.8",
"spatie/laravel-translation-loader": "^2.8",
"symfony/http-client": "^7.1"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.0",
"laravel/pint": "^1.0",
"spatie/laravel-ray": "^1.34"
},
"autoload": {
"psr-4": {
"Ferdiunal\\NovaTranslations\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ferdiunal\\NovaTranslations\\NovaTranslationsServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}