-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.04 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
{
"name": "uwla/lacl",
"description": "Laravel Access Control List",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/uwla/lacl",
"autoload": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\App\\": "tests/app/",
"Uwla\\Lacl\\": "src/"
}
},
"authors": [
{
"name": "uwla"
}
],
"require": {
"illuminate/database": "^11.0",
"illuminate/auth": "^11.0"
},
"require-dev": {
"laravel/sanctum": "^4.0",
"nunomaduro/phpinsights": "^2.11",
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"insights": "vendor/bin/phpinsights"
},
"extra": {
"laravel": {
"providers": [
"Uwla\\Lacl\\AclServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}