-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 862 Bytes
/
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
{
"name": "novadaemon/laravel-csv-translations",
"description": "Import Laravel translations strings from csv files",
"type": "project",
"license": "MIT",
"keywords": [
"laravel",
"localization",
"csv",
"translation",
"language"
],
"autoload": {
"psr-4": {
"Novadaemon\\LaravelCsvTranslations\\": "src/"
}
},
"authors": [
{
"name": "Jesús García",
"email": "novadaemon@gmail.com"
}
],
"require": {
"php": "^8.0",
"illuminate/console": "^9|^10"
},
"extra": {
"laravel": {
"providers": [
"Novadaemon\\LaravelCsvTranslations\\LaravelCsvTranslationsProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}