forked from graciousagency/doctrine-encryption-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.05 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
{
"name": "gracious/doctrine-encryption-bundle",
"description": "Simple bundle for adding encryption type to Doctrine",
"keywords": ["doctrine", "encryption", "hashing"],
"type": "symfony-bundle",
"require": {
"php": "^7.2|^8.0|^8.1|^8.2|^8.3",
"ext-sodium": "*",
"ext-json": "*",
"doctrine/dbal": "^4",
"doctrine/orm": "^3",
"doctrine/doctrine-bundle": "*",
"doctrine/doctrine-migrations-bundle": "*",
"symfony/framework-bundle": "^4.0|^5.0|^6.0|^7.0",
"symfony/flex": "^1.0|^2.0"
},
"license": "MIT",
"authors": [
{
"name": "Michael Willems",
"email": "[email protected]"
}
],
"extra": {
"symfony": {
"require": "^4.0|^5.0|^6.0|^7.0"
}
},
"autoload": {
"psr-4": { "Gracious\\DoctrineEncryptionBundle\\": "" }
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}