-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.31 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": "gtt/crypt-bundle",
"description": "Provides symfony encryptor/decryptor services based on various cryptographic components",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "fduch",
"email": "alex.medwedew@gmail.com"
}
],
"require": {
"php": "~7.2",
"symfony/dependency-injection": "^4.1",
"symfony/http-kernel": "^4.1",
"symfony/console": "^4.1",
"symfony/config": "^4.1"
},
"require-dev": {
"doctrine/dbal": "^2.5",
"phpunit/phpunit": "~7.0",
"zendframework/zend-crypt": "^2.6",
"defuse/php-encryption": "^2.2.1",
"mikey179/vfsstream": "^1.6"
},
"suggest": {
"zendframework/zend-crypt": "required in case when zend-crypt cryptographic component is used",
"defuse/php-encryption": "requires in case when symmetric cryptography is used",
"ext-openssl": "requires in case when RSA cryptography is used"
},
"autoload": {
"psr-4": { "Gtt\\Bundle\\CryptBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Gtt\\Bundle\\CryptBundle\\": "tests/" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}