-
Notifications
You must be signed in to change notification settings - Fork 90
/
composer.json
55 lines (55 loc) · 1.59 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
{
"name": "intaro/pinboard",
"description": "Simple web monitoring system which aggregates and displays Pinba data.",
"require": {
"php": ">=5.3.9",
"ext-PDO": "*",
"ext-pdo_mysql": "*",
"silex/silex": "~1.3",
"doctrine/dbal": "2.2.*",
"twig/twig": ">=1.8,<2.0-dev",
"symfony/twig-bridge": "~2.7",
"symfony/console": "~2.7",
"symfony/process": "~2.7",
"symfony/yaml": "~2.7",
"symfony/security": "~2.6.0",
"swiftmailer/swiftmailer": ">=4.1.2,<4.2-dev",
"incenteev/composer-parameter-handler": "~2.0",
"kurl/silex-doctrine-migrations-provider": "~0.1",
"doctrine/migrations": "1.0.*@dev"
},
"suggest": {
"ext-apc": "Opcode cache. Improves Application performance."
},
"homepage": "http://intaro.github.io/pinboard/",
"authors": [
{
"name": "Ilyas Salikhov",
"homepage": "http://intaro.ru",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/intaro/pinboard/issues"
},
"license": "MIT",
"autoload": {
"psr-0": {
"Pinboard": "src/"
}
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "config/parameters.yml",
"parameter-key": "db"
}
}
}