forked from bjyoungblood/BjyAuthorize
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
78 lines (78 loc) · 2.66 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
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
{
"name": "kokspflanze/bjy-authorize",
"description": "Laminas\\Acl based firewall system for Laminas dispatch protection",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "https://github.com/kokspflanze/BjyAuthorize",
"keywords": [
"laminas",
"acl",
"authorization",
"lmc-user"
],
"authors": [
{
"name": "Ben Youngblood",
"email": "[email protected]",
"homepage": "http://bjyoungblood.com/",
"role": "Developer"
},
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.com/",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-permissions-acl": "^2.8.0",
"laminas/laminas-mvc": "^3.2.0",
"laminas/laminas-eventmanager": "^3.4.0",
"laminas/laminas-servicemanager": "^3.7.0",
"laminas/laminas-http": "^2.15.0",
"laminas/laminas-view": "^2.14.2",
"laminas/laminas-authentication": "^2.8.0",
"laminas/laminas-cache": "^2.13.2 || ^3.1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.9",
"laminas/laminas-coding-standard": "^2.3.0",
"laminas/laminas-db": "^2.13.4",
"doctrine/persistence": "^1.3.8 || ^2.2.2",
"laminas/laminas-developer-tools": "^2.1.1",
"lm-commons/lmc-user": "^3.5.0",
"laminas/laminas-cache-storage-adapter-memory" : "@stable"
},
"suggests": {
"laminas/laminas-developer-tools": "if you need to see current authorization details while developing",
"lm-commons/lmc-user": "LmcUser provides a good default setup to get started with bjyauthorize",
"lm-commons/lmc-user-doctrine-orm": "To support Doctrine with LmcUser"
},
"autoload": {
"psr-4": {
"BjyAuthorize\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BjyAuthorizeTest\\": "test/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always --configuration phpunit.xml.dist"
}
}