-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (40 loc) · 1.01 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
{
"name": "rask/caphpe",
"description": "A volatile in-memory key-value storage written in PHP",
"authors": [
{
"name": "Otto Rask",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Caphpe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Caphpe\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"ext-sockets": "*",
"ext-mbstring": "*",
"react/react": "^0.4.2"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "8.*",
"phpstan/phpstan": "^0.11.2",
"phpstan/phpstan-strict-rules": "^0.11.0",
"squizlabs/php_codesniffer": "^3.4",
"slevomat/coding-standard": "~4.0"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"lint": "./vendor/bin/phpcs .",
"fix": "./vendor/bin/phpcbf .",
"stan": "./vendor/bin/phpstan analyze -l max"
}
}