-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 995 Bytes
/
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
{
"name": "rancoud/crypt",
"description": "Crypt package",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sebastien Rancoud",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Rancoud\\Crypt\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
"require": {
"php": ">=7.4.0",
"ext-mbstring": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16 || ^3.0",
"phpunit/phpunit": "^9.1 || ^10.0 || ^11.0",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"ci": [
"@lint",
"@test"
],
"lint": [
"phpcbf",
"phpcs",
"php-cs-fixer fix"
],
"test": [
"phpunit --colors --coverage-html ./coverage"
]
}
}