-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.04 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
46
47
48
{
"name": "assert6/hyperf-encrypt",
"description": "A encrypt component for hyperf.",
"license": "MIT",
"keywords": [
"php",
"swoole",
"hyperf",
"encrypt"
],
"require": {
"php": ">=7.2",
"ext-openssl": "*",
"hyperf/di": "~2.1.0",
"hyperf/utils": "~2.1.0",
"phpseclib/phpseclib": "^3.0"
},
"require-dev": {
"malukenho/docheader": "^0.1.6",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0.0",
"friendsofphp/php-cs-fixer": "^2.9"
},
"autoload": {
"psr-4": {
"Hyperf\\Encrypt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Encrypt\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"hyperf": {
"config": "Hyperf\\Encrypt\\ConfigProvider"
}
},
"bin": [
],
"scripts": {
"cs-fix": "php-cs-fixer fix $1",
"test": "phpunit --colors=always"
}
}