-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.39 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.39 KB
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
{
"name": "davidlienhard/sessionhandler",
"license": ["MIT"],
"description": "🐘 php sessionhandler using database connection",
"keywords": [ "router", "php", "library" ],
"type": "libary",
"homepage": "https://github.com/davidlienhard/sessionhandler/",
"authors": [
{
"name": "David Lienhard",
"email": "github@lienhard.win",
"homepage": "http://www.lienhard.win/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/davidlienhard/sessionhandler/issues/",
"email": "github@lienhard.win"
},
"require": {
"php": "^8.4",
"davidlienhard/database": "^3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^4",
"phpstan/phpstan": "^2",
"davidlienhard/coding-standard": "^1"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"changed-files": "git diff --name-only origin/master",
"phpcs": "./vendor/bin/phpcs",
"phpcs-diff": "@composer changed-files | xargs ls -d 2>/dev/null | xargs ./vendor/bin/phpcs",
"phpstan": "./vendor/bin/phpstan analyse",
"test": [
"@phpcs",
"@phpstan"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}