generated from renoki-co/laravel-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.14 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
{
"name": "renoki-co/acl",
"description": "Simple, JSON-based, AWS IAM-style ACL for PHP applications, leveraging granular permissions in your applications with strong declarations.",
"keywords": ["php", "aws", "iam", "acl", "permissions", "access", "control", "arn"],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/acl",
"authors": [
{
"name": "Alex Renoki",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^9.35"
},
"autoload": {
"psr-4": {
"RenokiCo\\Acl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenokiCo\\Acl\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"orchestra/testbench": "^7.14",
"orchestra/testbench-core": "^7.14",
"phpunit/phpunit": "^9.5.21",
"vimeo/psalm": "4.24.0"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}