-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 981 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
38
{
"name": "lechihuy/bit-laravel-translatable",
"description": "Support multiple languages for models in Laravel framework.",
"homepage": "https://github.com/lechihuy/bit-laravel-translatable",
"authors": [
{
"name": "Lê Chí Huy",
"email": "lechihuy1062001@gmail.com"
}
],
"license": "MIT",
"require": {
"php": "^8.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"Bit\\Translatable\\": "src/",
"Bit\\Translatable\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Bit\\Translatable\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bit\\Translatable\\TranslatableServiceProvider"
]
}
}
}