-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.11 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
{
"name": "morebec/orkestra-postgresql-personal-information-store",
"description": "PostgreSQL Personal Information Storage for Orkestra",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "jwillp",
"email": "jwilliam.perreault@morebec.com"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-pgsql": "*",
"ext-pdo_pgsql": "*",
"ext-sodium": "*",
"doctrine/dbal": "^3.0",
"morebec/orkestra-datetime": "^2.4",
"morebec/orkestra-privacy": "^2.4",
"morebec/orkestra-normalization": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"ext-dom": "*",
"phpstan/phpstan": "^0.12.7",
"friendsofphp/php-cs-fixer": "^2.16",
"symfony/var-dumper": "5.*"
},
"autoload": {
"psr-4": {
"Morebec\\Orkestra\\PostgreSqlPersonalInformationStore\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Morebec\\Orkestra\\PostgreSqlPersonalInformationStore\\": "tests"
}
}
}