-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
69 lines (69 loc) · 2.2 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
64
65
66
67
68
69
{
"name": "phauthentic/session",
"description": "php session abstraction",
"type": "library",
"license": "MIT",
"require": {
"adbario/php-dot-notation": "^2.1"
},
"require-dev": {
"php": "^7.4",
"ext-pdo": "*",
"psr/http-server-middleware": "^1.0",
"psr/cache": "^1.0",
"instituteweb/composer-scripts": "^1.1"
},
"suggest": {
"psr/http-server-middleware": "Required if you want to use the session middleware",
"cache/session-handler": "PSR-6 based session handler",
"uma/redis-session-handler": "Redis based session handler - recommended!"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Phauthentic\\Infrastructure\\Http\\Session\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phauthentic\\Infrastructure\\Http\\Session\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"php config/composer_post_install.php"
],
"test": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"bin/phpunit"
],
"test-coverage": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"bin/phpunit --coverage-text"
],
"test-coverage-html": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"bin/phpunit --coverage-html tmp/coverage/"
],
"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 src/"
],
"phive": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"php config/composer_phive.php"
]
}
}