-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.66 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
69
70
71
72
73
74
75
76
{
"name": "aeliot/doctrine-encrypted-field",
"type": "symfony-bundle",
"description": "Projects provides equipments to work with encrypted columns in database via fields of Doctrine entities",
"license": "MIT",
"require": {
"php": "^8.2",
"ext-pdo": "*",
"doctrine/orm": "^2.15",
"doctrine/persistence": "^2.0|^3.0",
"symfony/config": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0"
},
"config": {
"allow-plugins": {
"symfony/*": true,
"composer/*": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Aeliot\\Bundle\\DoctrineEncryptedField\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aeliot\\Bundle\\DoctrineEncryptedField\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^5.4|^6.0"
}
},
"require-dev": {
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "9.5.*",
"squizlabs/php_codesniffer": "^3.9"
},
"scripts": {
"check-all": [
"@cs-fixer-check",
"@phpcs",
"@phpstan",
"@test-unit"
],
"cs-check": "@cs-fixer-check",
"cs-fix": "@cs-fixer-fix",
"cs-fixer-baseline": "XDEBUG_MODE=off tools/pcsf-baseline.phar -b scripts/php-cs-fixer/baseline.json -c scripts/php-cs-fixer/config.php -f scripts/php-cs-fixer/finder.php",
"cs-fixer-check": "@cs-fixer-fix --dry-run",
"cs-fixer-fix": "tools/php-cs-fixer.phar fix -vv --config=scripts/php-cs-fixer/config.php",
"phive-install": "phive install --trust-gpg-keys $(cat .phive/trust-gpg-keys.txt)",
"phpcs": "vendor/bin/phpcs --standard=PSR12 src",
"phpcbf": "vendor/bin/phpcbf --standard=PSR12 src",
"phpstan": [
"@phpstan-clear",
"@phpstan-analyse"
],
"phpstan-analyse": "vendor/bin/phpstan analyse -c scripts/phpstan/config.neon --memory-limit=-1",
"phpstan-baseline": [
"@phpstan-clear",
"@phpstan-analyse --generate-baseline scripts/phpstan/baseline.neon --allow-empty-baseline"
],
"phpstan-clear": "vendor/bin/phpstan clear-result-cache",
"test-unit": "vendor/bin/phpunit --testsuite unit -v"
},
"keywords": ["doctrine", "database", "encryption", "symfony"]
}