forked from Phauthentic/authorization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.77 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
{
"name": "phauthentic/authorization",
"description": "A framework agnostic policy based authorization abstraction",
"keywords": [
"auth",
"authorization",
"access",
"permissions",
"policy"
],
"type": "library",
"require": {
"php": "^7.1",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/dbunit": "^4.0",
"phpunit/phpunit": "^7.4",
"squizlabs/php_codesniffer": "^3.3"
},
"license": "MIT",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Phauthentic\\Authorization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phauthentic\\Authorization\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"OverridePlugin\\": "tests/test_app/Plugin/OverridePlugin/src/",
"TestApp\\": "tests/test_app/TestApp/",
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src/"
}
},
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/authorization/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/authorization/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/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"
}
}