-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.69 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
{
"name": "phauthentic/dispatcher-middleware",
"description": "",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Florian Krämer",
"role": "Maintainer"
}
],
"require": {
"php": "^7.2",
"psr/container": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"instituteweb/composer-scripts": "^1.1"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"bin-dir": "bin",
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Phauthentic\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Phauthentic\\Test\\": "tests"
}
},
"scripts": {
"post-install-cmd": [
"php config/composer_post_install.php"
],
"tests": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"./bin/phpunit"
],
"cscheck": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"./bin/phpcs ./src ./tests --standard=./phpcs.xml -s"
],
"csfix": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"./bin/phpcbf ./src ./tests --standard=./phpcs.xml"
],
"analyze": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"./bin/phpstan analyse -l 5 -c phpstan.neon ./src\\"
],
"phive": [
"php ./config/composer_phive.php"
]
}
}