-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.67 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
{
"name": "kuma-guy/jwt-auth-module",
"description": "JWT authentication module for BEAR.Sunday",
"keywords": [
"JWT",
"BEAR.Sunday"
],
"license": "MIT",
"authors": [
{
"name": "kuma-guy"
}
],
"require": {
"php": ">=7.0.0",
"ray/di": "^2.3",
"ray/aura-web-module": "^0.1.0",
"namshi/jose": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8 || ~5.0",
"squizlabs/php_codesniffer": "~2.3",
"phpmd/phpmd": "~2.3"
},
"autoload": {
"psr-4": {
"BEAR\\JwtAuth\\": "src/"
},
"files": ["doctrine_annotations.php"]
},
"autoload-dev": {
"psr-4": {
"BEAR\\JwtAuth\\": [
"tests/"
]
}
},
"scripts": {
"test": [
"phpmd src text ./phpmd.xml",
"phpcs src tests",
"phpunit"
],
"cs-fix": [
"php-cs-fixer fix --config-file=./.php_cs",
"phpcbf src"
],
"build": [
"rm -rf ./build; mkdir -p ./build/logs ./build/pdepend ./build/api",
"pdepend --jdepend-xml=./build/logs/jdepend.xml --jdepend-chart=./build/pdepend/dependencies.svg --overview-pyramid=./build/pdepend/overview-pyramid.svg src",
"phploc --log-csv ./build/logs/phploc.csv src",
"phpcs --report=checkstyle --report-file=./build/logs/checkstyle.xml --standard=phpcs.xml src",
"apigen generate -s src -d build/api --debug",
"@test"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}