-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 981 Bytes
/
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
{
"name": "casbin/laminas-db-adapter",
"keywords": [
"casbin",
"laminas-db",
"laminas",
"access-control",
"authorization",
"database",
"permissions"
],
"description": "Laminas DB Adapter for Casbin, Casbin is a powerful and efficient open-source access control library. ",
"authors": [
{
"name": "TechLee",
"email": "techlee@qq.com"
}
],
"license": "Apache-2.0",
"scripts": {
"test": "vendor/bin/phpunit"
},
"require": {
"casbin/casbin": "~3.1",
"laminas/laminas-db": "^2.11"
},
"require-dev": {
"phpunit/phpunit": "~5.7|~6.0|~7.0",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"CasbinAdapter\\LaminasDb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CasbinAdapter\\LaminasDb\\Tests\\": "tests/"
}
}
}