-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
73 lines (73 loc) · 1.86 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
65
66
67
68
69
70
71
72
73
{
"name": "paxha/lararole",
"description": "Lararole is a Laravel library, provides Role Management with permissions.",
"type": "laravel",
"license": "LGPL-3.0",
"keywords": [
"laravel",
"laravel library",
"lararole",
"role management",
"user management",
"laravel role management",
"laravel user management"
],
"authors": [
{
"name": "Hassan Raza Pasha",
"email": "e.hassanrazapasha@gmail.com"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/paxha/lararole.git"
}
],
"require": {
"php": "^7.2.5|^8.0",
"doctrine/dbal": "^2.10",
"fico7489/laravel-pivot": "^3.0",
"laravel/framework": "^8.0|^9.0",
"laravel/legacy-factories": "^1.1",
"paxha/artisan-view": "^4.0",
"paxha/laravel-recursive-relationships": "^1.0",
"paxha/laravel-reportable": "^1.0",
"paxha/laravel-sluggable": "^1.1",
"staudenmeir/eloquent-has-many-deep": "^1.11"
},
"require-dev": {
"orchestra/testbench": "^6.13",
"phpunit/phpunit": "^9.3.3"
},
"extra": {
"laravel": {
"providers": [
"Lararole\\LararoleServiceProvider",
"Lararole\\LararoleAuthServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Lararole\\": "src/",
"Lararole\\Database\\Seeds\\": "database/seeds/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Lararole\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}