forked from ambta/DoctrineEncryptBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 785 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 785 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
{
"name": "integralservice/doctrine-encrypt-bundle",
"type": "library",
"keywords": ["doctrine", "symfony", "encrypt", "decrypt"],
"license": "MIT",
"description": "Symfony 2 bundle which allows to encrypt data in database with some encrypt algorithm",
"require": {
"php": ">=7.2",
"symfony/framework-bundle": ">=3.4",
"doctrine/orm": ">=2.5"
},
"autoload": {
"psr-0": { "IntegralService\\DoctrineEncryptBundle": "" }
},
"target-dir": "IntegralService/DoctrineEncryptBundle",
"authors": [
{
"name": "Julien Rouvier",
"email": "julien@integral-service.fr"
}
],
"require-dev": {
"phpunit/phpunit": "^7.3",
"symfony/phpunit-bridge": "^4.1"
}
}