-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
64 lines (64 loc) · 1.7 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
{
"name": "laraxot/module_lang_fila3",
"description": "",
"license": "MIT",
"homepage": "https://github.com/laraxot/module_lang_fila3.git",
"authors": [
{
"name": "Marco Sottana",
"email": "marco.sottana@gmail.com"
}
],
"require": {
"mcamara/laravel-localization": "^2.2",
"spatie/laravel-sluggable": "*"
},
"require-dev": {},
"repositories": [
{
"type": "path",
"url": "../Xot"
},
{
"type": "path",
"url": "../Tenant"
},
{
"type": "path",
"url": "../UI"
}
],
"autoload": {
"psr-4": {
"Modules\\Lang\\": "app/",
"Modules\\Lang\\Database\\Factories\\": "database/factories/",
"Modules\\Lang\\Database\\Seeders\\": "database/seeders/"
}
},
"scripts": {
"post-autoload-dump": [],
"post-update-cmd": [],
"analyse": "vendor/bin/phpstan analyse",
"test": "./vendor/bin/pest --no-coverage",
"test-coverage": "vendor/bin/pest --coverage-html coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Modules\\Lang\\Providers\\LangServiceProvider",
"Modules\\Lang\\Providers\\Filament\\AdminPanelProvider"
],
"aliases": {}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}