-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
65 lines (65 loc) · 1.79 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
{
"name": "phauthentic/authorization",
"description": "A framework agnostic policy based authorization abstraction",
"keywords": [
"auth",
"authorization",
"access",
"permissions",
"policy"
],
"type": "library",
"require": {
"php": "^7.2|^8.0",
"psr/container": "^2.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"misantron/dbunit": "dev-master",
"phpstan/phpstan": "^0.12.84",
"phpunit/phpunit": "^9.5.4|^8.5.16|^7.5.20",
"squizlabs/php_codesniffer": "^3.4"
},
"license": "MIT",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Phauthentic\\Authorization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phauthentic\\Authorization\\Test\\": "tests/",
"TestApp\\": "tests/test_app/TestApp/",
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src/"
}
},
"authors": [
{
"name": "Florian Krämer"
},
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/authorization/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phauthentic/authorization/issues",
"forum": "https://stackoverflow.com/tags/phauthentic",
"source": "https://github.com/phauthentic/authorization"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors -p ./src ./tests",
"cs-fix": "phpcbf --colors ./src ./tests",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
},
"config": {
"sort-packages": true,
"bin-dir": "bin"
}
}