-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·59 lines (59 loc) · 1.28 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
{
"name": "garyr/portunus",
"type": "library",
"description": "A library for storing encrypted secrets",
"keywords": [
"encryption",
"crypt",
"secrets",
"storage",
"ssl",
"key",
"value"
],
"bin": [
"bin/portunus"
],
"require-dev": {
"phpunit/phpunit": "~4.6"
},
"license": "MIT",
"authors": [
{
"name": "Gary Rogers",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"Portunus\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Portunus\\Test\\": "test/"
}
},
"require": {
"php":">=5.4.0",
"ext-openssl": "*",
"ext-pdo": "*",
"doctrine/orm": "2.4.*",
"symfony/config": "~2.5",
"symfony/console": "~2.5",
"symfony/dependency-injection": "~2.5",
"symfony/expression-language": "~2.5"
},
"scripts": {
"post-update-cmd": [
"Portunus\\Console\\Composer::postUpdate"
],
"post-install-cmd": [
"Portunus\\Console\\Composer::postInstall"
]
},
"extra": {
"portunus-data-dir": "../data",
"portunus-db-name": "portunus.sqlite"
}
}