forked from absolute-quantum/DoctrineEncryptBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.8 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.8 KB
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
69
70
71
72
73
{
"name": "doctrineencryptbundle/doctrine-encrypt-bundle",
"description": "Encrypted symfony entity's by verified and standardized libraries",
"license": "MIT",
"type": "library",
"keywords": [
"doctrine",
"symfony",
"halite",
"defuse",
"encrypt",
"decrypt"
],
"require": {
"php": ">=8.2",
"composer-runtime-api": "^2.0",
"composer/semver": "^3.0",
"doctrine/annotations": "^1.13 || ^2.0",
"doctrine/common": "^3.4",
"doctrine/dbal": "^2.13.9 || ^3.9.4 || ^4.2.2",
"doctrine/doctrine-bundle": "^2.12.0 || ^3.0.0",
"doctrine/event-manager": "^1.2 || ^2.0.1",
"doctrine/orm": "^2.12 || ^3.3",
"paragonie/halite": "^4.6 || ^5.0",
"symfony/cache": "^6.4 || ^7.4 || ^8.0",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/deprecation-contracts": "^2.5 || ^3.5.1",
"symfony/expression-language": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/property-access": "^6.4 || ^7.4 || ^8.0",
"symfony/yaml": "^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"defuse/php-encryption": "^2.1",
"doctrine/cache": "^1.11",
"ergebnis/composer-normalize": "^2.48",
"friendsofphp/php-cs-fixer": "^3.64.0",
"maglnet/composer-require-checker": "^2.1 || ^3.8 || ^4.14",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpstan/phpstan": "^2.1",
"squizlabs/php_codesniffer": "^3.7",
"symfony/phpunit-bridge": "^7.4"
},
"suggest": {
"ext-sodium": "Required to use halite encryption library.",
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
"paragonie/sodium_compat": "Alternative for ext-sodium for use with older php-versions"
},
"autoload": {
"psr-4": {
"Ambta\\DoctrineEncryptBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ambta\\DoctrineEncryptBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --verbose",
"phpcs-compatibility-test": "vendor/bin/phpcs src/ tests/ --standard=PHPCompatibility --runtime-set testVersion 8.1-8.4"
}
}