-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.47 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
{
"name": "rotexsoft/versatile-acl",
"type": "library",
"description": "A simple light-weight and highly customizable package that can be used for implementing access control in any php application.",
"keywords": [
"acl", "access", "control", "list", "lists", "access-control", "access-control-list", "access-control-lists",
"permissions", "role", "roles", "rbac", "role-based", "role-based-access-control", "authorize", "authorization"
],
"homepage": "https://github.com/rotexsoft/versatile-acl",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Rotimi Adegbamigbe",
"email": "rotexdegba007-github@yahoo.ca",
"homepage": "https://github.com/rotexdegba",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"php-coveralls/php-coveralls": "^2.0",
"vimeo/psalm": "^5.4",
"rector/rector": "^1.0.0"
},
"autoload": {
"classmap": ["src/"]
},
"autoload-dev": {
"classmap": ["src/", "tests/"],
"files": [ ]
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-text",
"rector": "vendor/bin/rector process src --dry-run -vvv",
"psalm": "vendor/bin/psalm --clear-cache && vendor/bin/psalm",
"qa": "composer test && composer rector && composer psalm"
}
}