-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
68 lines (68 loc) · 2.15 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
62
63
64
65
66
67
68
{
"name": "odandb/doctrine-ciphersweet-encryption-bundle",
"description": "Bridge between Doctrine and Ciphersweet libary in order to make encrypted and searchable fields",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"bundle",
"doctrine",
"encryption",
"cipher"
],
"authors": [
{
"name": "Mathieu Girard",
"email": "[email protected]"
},
{
"name": "OD&B",
"homepage": "https://www.odandb.com/"
}
],
"require": {
"php": ">=8.0",
"ext-mbstring": "*",
"doctrine/annotations": "^1.10 || ^2.0",
"doctrine/doctrine-bundle": "^2.8.0",
"doctrine/orm": "^2.14 || ^3.0",
"paragonie/ciphersweet": "^3.0 || ^4.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/deprecation-contracts": "^2.5 || ^3.2",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/process": "^5.4 || ^6.4 || ^7.0",
"symfony/property-access": "^5.4 || ^6.4 || ^7.0",
"symfony/property-info": "^5.4 || ^6.4 || ^7.0",
"symfony/service-contracts": "^2.2 || ^3.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.4 || ^6.4 || ^7.0",
"symfony/doctrine-bridge": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^6.4",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0"
},
"suggest": {
"phpdocumentor/reflection-docblock": "To use the PHPDoc"
},
"autoload": {
"psr-4": {
"Odandb\\DoctrineCiphersweetEncryptionBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Odandb\\DoctrineCiphersweetEncryptionBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-clover=coverage-report.xml"
}
}