-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.62 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": "ryo88c/bear.authority",
"type": "library",
"license": "MIT",
"description": "An authority for BEAR.Sunday",
"authors": [
{
"name": "Ryo HAYASHI",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"bear/sunday": "^1.3",
"firebase/php-jwt": "^5.0",
"ray/aura-web-module": "^0.1.0",
"ext-json": "*",
"ext-openssl": "^7.1",
"bear/package": ">=1.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.3",
"phpstan/phpstan-shim": "^0.10",
"nikic/php-parser": "^4.2"
},
"autoload": {
"psr-4": {
"Ryo88c\\Authority\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ryo88c\\Authority\\": "tests/",
"FakeVendor\\FakeProject\\": "tests/FakeVendor/FakeProject/src/"
}
},
"scripts": {
"test": [
"phpunit"
],
"tests": [
"@cs",
"phpmd src,tests text ./phpmd.xml",
"phpstan analyse -l max src tests -c phpstan.neon --no-progress",
"@test"
],
"coverage": [
"php -dzend_extension=xdebug.so phpunit --coverage-text --coverage-html=build/coverage"
],
"cs": [
"php-cs-fixer fix -v --dry-run",
"phpcs --standard=phpcs.xml src;"
],
"cs-fix": [
"php-cs-fixer fix -v",
"phpcbf src tests"
]
}
}