forked from wikimedia/php-session-serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.21 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.21 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
50
51
52
{
"name": "wikimedia/php-session-serializer",
"description": "Provides methods like PHP's session_encode and session_decode that don't mess with $_SESSION",
"license": "GPL-2.0-or-later",
"homepage": "https://www.mediawiki.org/wiki/Php-session-serializer",
"authors": [
{
"name": "Brad Jorsch",
"email": "bjorsch@wikimedia.org"
}
],
"autoload": {
"psr-4": {
"Wikimedia\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require": {
"php": ">=7.4.0",
"wikimedia/at-ease": "*",
"psr/log": "*"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "40.0.1",
"mediawiki/mediawiki-phan-config": "0.12.0",
"mediawiki/minus-x": "1.1.1",
"ockcyp/covers-validator": "1.6.0",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit $PHPUNIT_ARGS",
"covers-validator",
"phan --allow-polyfill-parser --long-progress-bar",
"minus-x check ."
],
"cover": "phpunit --coverage-html coverage",
"fix": [
"minus-x fix .",
"phpcbf"
],
"phan": "phan -d . --long-progress-bar",
"phpcs": "phpcs -sp --cache"
}
}