-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
63 lines (63 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
{
"name": "kineticamobile/lumki",
"description": "Laravel User Management for Laravel 9 with Jetstream",
"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/kineticamobile/lumki",
"keywords": [
"Laravel",
"Lumki",
"Users Management",
"Laravel 9"
],
"require": {
"illuminate/support": "~5|~6|~7|~8|~9|^10.0|^11.0",
"spatie/laravel-permission": "^3.0|^4.0|^5.0|^6.4",
"lab404/laravel-impersonate": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "~8.0|~9.0|^10.5",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3|~4|~5|~6|^8.0|^9.0",
"sempro/phpunit-pretty-print": "^1.0"
},
"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"
}
}