-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
76 lines (76 loc) · 2.13 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": "matiux/broadway-sensitive-serializer",
"description": "Serializer implementation with support for data sensitization",
"keywords": [
"cqrs",
"event sourcing",
"domain-driven design",
"ddd",
"sensitization",
"serializer",
"gdpr"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matteo Galacci",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"require": {
"php": "^7.4|^8",
"ext-json": "*",
"ext-openssl": "*",
"adbario/php-dot-notation": "^3.1",
"ramsey/uuid": "^4.2",
"symfony/polyfill-php81": "^1.24"
},
"require-dev": {
"bmitch/churn-php": "^1.5",
"broadway/broadway": "^2.4",
"friendsofphp/php-cs-fixer": "^3.5",
"matiux/php-project-autopilot": "dev-master",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5",
"psalm/plugin-mockery": "^1.0",
"psalm/plugin-phpunit": "^0.19",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^5.3|^6.0",
"vimeo/psalm": "^5.0"
},
"suggest": {
"broadway/broadway-bundle": "Symfony bundle for broadway/broadway",
"broadway/event-store-dbal": "Event store implementation using doctrine/dbal"
},
"autoload": {
"psr-4": {
"Matiux\\Broadway\\SensitiveSerializer\\": "src/SensitiveSerializer/",
"Matiux\\Broadway\\SensitiveSerializer\\Example\\": "example/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\SensitiveSerializer\\": "tests/Unit/SensitiveSerializer/",
"Tests\\Integration\\SensitiveSerializer\\": "tests/Integration/SensitiveSerializer/",
"Tests\\Util\\SensitiveSerializer\\": "tests/Util/",
"Tests\\Support\\SensitiveSerializer\\": "tests/Support/",
"Tests\\Learning\\SensitiveSerializer\\": "tests/Learning/"
}
},
"scripts": {
"post-install-cmd": [
"bash vendor/matiux/php-project-autopilot/src/configure.sh"
],
"post-update-cmd": [
"bash vendor/matiux/php-project-autopilot/src/configure.sh"
]
}
}