forked from ambta/DoctrineEncryptBundle
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 882 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 882 Bytes
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
{
"name": "absolute-quantum/doctrine-encrypt-bundle-demo",
"description": "Symlinks shared directories",
"type": "metapackage",
"require": {
"kporras07/composer-symlinks": "^1.1"
},
"scripts": {
"post-install-cmd": [
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks"
],
"post-update-cmd": [
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks"
]
},
"extra": {
"symlinks": {
"shared/templates": "symfony4.4/templates",
"./shared/templates": "symfony6.x/templates",
"shared/var/data.db": "symfony4.4/var/data.db",
"./shared/var/data.db": "symfony6.x/var/data.db",
"shared/.Halite.key": "symfony4.4/.Halite.key",
"./shared/.Halite.key": "symfony6.x/.Halite.key"
}
}
}