-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (40 loc) · 1.08 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
{
"name": "phpsess/sodium-encryption",
"description": "A Sodium encryption driver for PHPSess",
"type": "library",
"version": "0.0.1-beta",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"ext-json": "*",
"php": ">=7.1",
"phpsess/session-handler": "*",
"ext-sodium": "*"
},
"license": "MIT",
"authors": [
{
"name": "Ayrton Fidelis",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PHPSess\\Encryption\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^7",
"phpstan/phpstan": "^0.10.3",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"fix": "phpcbf src",
"build": "composer test && composer phpstan && composer phpmd && composer phpcs",
"test": "phpunit",
"phpstan": "phpstan analyse",
"phpmd": "phpmd src text cleancode,codesize,controversial,design,naming,unusedcode",
"phpcs": "phpcs"
}
}