-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (61 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "xorgxx/neox-doctrine-secure-bundle",
"description": "This bundle provides Encrypt/Decrypt data sensible in a Db system in your application.\nIts main goal is to make it simple for you to manage encrypt & decrypt sensible data into Db!\nThis bundle is to refresh the old bundle [DoctrineEncryptBundle]",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "xorgxx",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"doctrine/inflector": "^2.0",
"symfony/config": "^6.3|^7.0",
"symfony/console": "^6.3|^7.0",
"symfony/dependency-injection": "^6.3|^7.0",
"symfony/deprecation-contracts": "^2.2|^3",
"symfony/filesystem": "^6.3|^7.0",
"symfony/finder": "^6.3|^7.0",
"symfony/framework-bundle": "^6.3|^7.0",
"symfony/http-kernel": "^6.3|^7.0",
"symfony/process": "^6.3|^7.0",
"paragonie/halite": "^5.1",
"symfony/property-access": "^6.3|^7.0"
},
"require-dev": {
"composer/semver": "^3.0",
"doctrine/doctrine-bundle": "^2.5.0",
"doctrine/orm": "^2.10.0",
"symfony/http-client": "^6.3|^7.0",
"symfony/maker-bundle": "^1.51",
"symfony/phpunit-bridge": "^6.3|^7.0",
"symfony/security-core": "^6.3|^7.0",
"symfony/yaml": "^6.3|^7.0",
"twig/twig": "^2.0|^3.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"symfony/flex": false
}
},
"conflict": {
"doctrine/orm": "<2.10",
"doctrine/doctrine-bundle": "<2.4",
"symfony/doctrine-bridge": "<5.4"
},
"autoload": {
"psr-4": {
"NeoxDoctrineSecure\\NeoxDoctrineSecureBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NeoxDoctrineSecure\\NeoxDoctrineSecureBundle\\tests\\": "tests/"
}
}
}