-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
41 lines (41 loc) · 1.09 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
{
"name" : "specshaper/encrypt-bundle",
"type" : "symfony-bundle",
"description" : "Bundle provides a service for encrypting values via attribute.",
"homepage": "https://github.com/mogilvie/EncryptBundle",
"authors" : [{
"name" : "Mark Ogilvie",
"email" : "[email protected]"
}],
"keywords" : [
"encrypt bundle"
],
"license" : [
"MIT"
],
"require" : {
"php": ">=7.4|>=8",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/console": "^5.4|^6.0|^7.0",
"doctrine/annotations": "^1.8|^2.0",
"doctrine/orm": "^2.11",
"doctrine/doctrine-bundle": "^2.5",
"symfony/monolog-bundle": "^3.7",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-sodium": "*"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.0"
},
"autoload": {
"psr-4": {
"SpecShaper\\EncryptBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SpecShaper\\EncryptBundle\\Tests\\": "tests/"
}
}
}