-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.94 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.94 KB
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
{
"name": "mike-bronner/laravel-governor",
"description": "Managing policy and control in Laravel.",
"license": "MIT",
"authors": [
{
"name": "GeneaLabs, LLC",
"email": "hello@genealabs.com"
}
],
"require": {
"php": "^8.2",
"illuminate/database": "^11.0|^12.0|^13.0",
"illuminate/support": "^11.0|^12.0|^13.0",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"doctrine/dbal": "^3.0|^4.0",
"fakerphp/faker": "^1.23",
"orchestra/testbench": "^9.0|^10.0|^11.0",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^10.0|^11.0|^12.0",
"squizlabs/php_codesniffer": "^4.0",
"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/",
"GeneaLabs\\LaravelGovernor\\Tests\\Database\\Factories\\": "tests/database/factories/",
"App\\": "tests/Fixtures/App/"
}
},
"extra": {
"laravel": {
"providers": [
"GeneaLabs\\LaravelGovernor\\Providers\\Auth",
"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
}