forked from kineticamobile/lumki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (60 loc) · 1.74 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
{
"name": "headerx/lumki",
"description": "Laravel User Management for Laravel 9 with Jetstream. Forked from kineticamobile/lumki",
"license": "MIT",
"authors": [
{
"name": "Raul Tierno",
"email": "[email protected]",
"homepage": "https://github.com/raultm"
},
{
"name": "Daniel Macías",
"email": "[email protected]",
"homepage": "https://github.com/dmaciasr"
},
{
"name": "Emilio Ortiz",
"email": "[email protected]",
"homepage": "https://github.com/branigan"
}
],
"homepage": "https://github.com/inmanturbo/lumki",
"keywords": ["Laravel", "Lumki", "Users Management", "Laravel 9", "Jetstream"],
"require": {
"illuminate/support": "~5|~6|~7|~8|~9",
"spatie/laravel-permission": "^3.0|^4.0|^5.0",
"lab404/laravel-impersonate": "^1.7",
"laravel/fortify": "^1.10"
},
"require-dev": {
"phpunit/phpunit": "~8.0|~9.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3|~4|~5|~6|~7",
"sempro/phpunit-pretty-print": "^1.0",
"friendsofphp/php-cs-fixer": "^3.6"
},
"autoload": {
"psr-4": {
"Kineticamobile\\Lumki\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kineticamobile\\Lumki\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Kineticamobile\\Lumki\\LumkiServiceProvider"
],
"aliases": {
"Lumki": "Kineticamobile\\Lumki\\Facades\\Lumki"
}
}
},
"scripts": {
"test": "phpunit --testdox"
}
}