forked from martinusso/opencrypt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.03 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": "martinusso/opencrypt",
"type": "library",
"description": "Two-way encryption (encrypt and decrypt) data using PHP with OpenSSL",
"keywords": [
"PHP",
"encrypt",
"decrypt",
"OpenSSL"
],
"homepage": "https://github.com/martinusso/opencrypt",
"license": [
"MIT"
],
"authors": [
{
"name": "Breno Borges Martinusso",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.4"
},
"autoload": {
"psr-4": {
"OpenCrypt\\": "src/OpenCrypt/"
}
},
"autoload-dev": {
"psr-4": {
"OpenCrypt\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"cs": "phpcs --standard=PSR2 src",
"test": "phpunit -c phpunit.xml",
"test-cover": "phpunit --coverage-text"
}
}