-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
75 lines (75 loc) · 2.25 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
74
75
{
"name": "genealabs/laravel-governor",
"description": "Managing policy and control in Laravel.",
"license": "MIT",
"authors": [
{
"name": "GeneaLabs, LLC",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"require": {
"genealabs/laravel-casts": "dev-feature/upgrade-to-blade-components @dev",
"illuminate/container": "^9.0|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/view": "^9.0|^10.0|^11.0",
"php": "^7.3|^8.0",
"ramsey/uuid": "^4.0",
"titasgailius/search-relations": "^1.0"
},
"require-dev": {
"doctrine/dbal": "^2.9",
"fakerphp/faker": "^1.28",
"laravel/legacy-factories": "^1.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.0",
"php-coveralls/php-coveralls": "^2.1",
"symfony/thanks": "^1.2"
},
"autoload": {
"classmap": [
"database/migrations"
],
"psr-4": {
"GeneaLabs\\LaravelGovernor\\": "src/",
"GeneaLabs\\LaravelGovernor\\Database\\Factories\\": "database/factories/",
"GeneaLabs\\LaravelGovernor\\Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"classmap": [
"tests/database/migrations"
],
"psr-4": {
"GeneaLabs\\LaravelGovernor\\Tests\\": "tests/",
"App\\": "tests/Fixtures/App/"
}
},
"extra": {
"laravel": {
"providers": [
"GeneaLabs\\LaravelGovernor\\Providers\\Auth",
"GeneaLabs\\LaravelGovernor\\Providers\\Nova",
"GeneaLabs\\LaravelGovernor\\Providers\\Route",
"GeneaLabs\\LaravelGovernor\\Providers\\Service"
]
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"symfony/thanks": true,
"cweagans/composer-patches": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}