-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
50 lines (50 loc) · 1.12 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
{
"name": "sitepoint/rauth",
"type": "library",
"description": "A basic annotation-based ACL package",
"keywords": [
"SitePoint",
"Rauth",
"ACL",
"authorization",
"access control"
],
"homepage": "https://github.com/SitePoint/Rauth",
"license": "MIT",
"authors": [
{
"name": "Bruno Skvorc",
"email": "[email protected]",
"homepage": "https://bitfalls.com",
"role": "Developer"
}
],
"require": {
"php" : "~7.0"
},
"require-dev": {
"symfony/var-dumper": "~3",
"phpunit/phpunit" : "~5",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"SitePoint\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SitePoint\\Rauth\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs": "vendor/bin/phpcs --standard=psr2 src/"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}