-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 813 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 813 Bytes
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
{
"name": "shimoning/encryption",
"description": "Library about encrypt",
"keywords": [
"encryption",
"encrypt",
"decrypt"
],
"type": "library",
"version": "0.1.0",
"license": "MIT",
"require": {
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2 | ^3",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.1",
"phpmd/phpmd": "^2.15"
},
"autoload": {
"psr-4": {
"Shimoning\\Encryption\\": "src"
}
},
"scripts": {
"test": "phpunit",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-html='.coverage' --coverage-clover='clover.xml'",
"cs:check": "php-cs-fixer fix --dry-run --diff --verbose",
"cs:fix": "php-cs-fixer fix --verbose",
"md": "phpmd src text phpmd.xml",
"stan": "phpstan analyse"
}
}