-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
66 lines (66 loc) · 1.73 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
{
"name": "josantonius/session",
"description": "PHP library for handling sessions.",
"license": "MIT",
"type": "library",
"keywords": [
"session",
"php"
],
"authors": [
{
"name": "Josantonius",
"email": "[email protected]",
"homepage": "https://josantonius.dev",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/josantonius/php-session/issues",
"source": "https://github.com/josantonius/php-session",
"discussions": "https://github.com/josantonius/php-session/discussions"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpmd/phpmd": "^2.12",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Josantonius\\Session\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Josantonius\\Session\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"coverage": "vendor/bin/phpunit --coverage-clover=coverage.xml",
"fix": [
"vendor/bin/phpcbf src tests"
],
"htmlCoverage": "vendor/bin/phpunit --coverage-html coverage",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml $(find . -name '*.php');",
"phpmd": "vendor/bin/phpmd src,tests text ./phpmd.xml",
"phpunit": "vendor/bin/phpunit",
"tests": [
"clear",
"@phpmd",
"@phpcs",
"@phpunit"
]
}
}