-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
119 lines (119 loc) · 3.19 KB
/
Copy pathcomposer.json
File metadata and controls
119 lines (119 loc) · 3.19 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "zennit/abac",
"description": "Attribute-Based Access Control (ABAC) for Laravel",
"version": "2.0.3",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"abac",
"access-control",
"authorization",
"permissions"
],
"homepage": "https://github.com/zennit-dev/abac",
"support": {
"issues": "https://github.com/zennit-dev/abac/issues",
"source": "https://github.com/zennit-dev/abac"
},
"readme": "README.md",
"authors": [
{
"name": "zennit",
"email": "contact@zennit.dev",
"homepage": "https://zennit.dev"
}
],
"require": {
"php": "^8.3",
"illuminate/cache": "^13.0",
"illuminate/console": "^13.0",
"illuminate/contracts": "^13.0",
"illuminate/database": "^13.0",
"illuminate/http": "^13.0",
"illuminate/routing": "^13.0",
"illuminate/support": "^13.0"
},
"require-dev": {
"larastan/larastan": "^3.4",
"laravel/pint": "^1.23",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^11.0",
"pestphp/pest": "^4.4",
"pestphp/pest-plugin-laravel": "^4.0",
"phpbench/phpbench": "^1.4",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.2"
},
"autoload": {
"psr-4": {
"zennit\\ABAC\\": "src/",
"zennit\\ABAC\\Database\\Factories\\": "database/factories/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"zennit\\ABAC\\Tests\\": "tests/",
"zennit\\ABAC\\Benchmarks\\": "benchmarks/"
}
},
"extra": {
"laravel": {
"providers": [
"zennit\\ABAC\\Providers\\AbacServiceProvider"
],
"config": {
"abac": "config/abac.php"
},
"aliases": {
"Abac": "zennit\\ABAC\\Facades\\Abac"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"pint": [
"vendor/bin/pint"
],
"test": [
"vendor/bin/pest"
],
"test:unit": [
"vendor/bin/pest tests/Unit"
],
"test:feature": [
"vendor/bin/pest tests/Feature"
],
"analyse": [
"vendor/bin/phpstan analyse --memory-limit=1G"
],
"bench": [
"vendor/bin/phpbench run --config=phpbench.normal.json"
],
"bench-latency": [
"vendor/bin/phpbench run --config=phpbench.latency.json"
],
"bench:quick": [
"vendor/bin/phpbench run --config=phpbench.normal.json --revs=10 --iterations=2"
],
"bench-latency:quick": [
"vendor/bin/phpbench run --config=phpbench.latency.json --revs=10 --iterations=2"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/zennit-dev/abac"
}
]
}