This repository has been archived by the owner on May 14, 2020. It is now read-only.
forked from jumph-io/Jumph
-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
82 lines (80 loc) · 3 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
77
78
79
80
81
82
{
"name": "jumph-io/jumph",
"license": "MIT",
"type": "project",
"description": "Jumph is a project management tool",
"homepage": "http://jumph.github.io",
"authors": [
{
"name": "Peter Nijssen",
"homepage": "https://www.peternijssen.nl"
}
],
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.3.*",
"doctrine/orm": "2.4.*",
"doctrine/doctrine-bundle": "1.2.*",
"twig/extensions": "1.1.*",
"symfony/assetic-bundle": "2.3.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "2.6.*",
"sensio/distribution-bundle": "2.3.*",
"sensio/framework-extra-bundle": "2.3.*",
"sensio/generator-bundle": "2.3.*",
"incenteev/composer-parameter-handler": "~2.0",
"stof/doctrine-extensions-bundle": "1.1.*",
"friendsofsymfony/user-bundle": "2.0.*@dev",
"knplabs/knp-menu": "2.0.*",
"knplabs/knp-menu-bundle": "2.0.*",
"knplabs/knp-paginator-bundle": "2.4.*",
"lexik/form-filter-bundle": "2.0.*"
},
"require-dev": {
"webfactory/exceptions-bundle": "4.0.*",
"squizlabs/php_codesniffer": "1.5.*",
"phpmd/phpmd": "2.1.*",
"sebastian/phpcpd": "2.0.*",
"pdepend/pdepend": "2.0.*",
"phploc/phploc": "2.0.*",
"phpunit/phpunit": "4.3.*",
"theseer/phpdox": "0.7.*",
"satooshi/php-coveralls": "0.7.*@dev",
"mockery/mockery": "0.9.*",
"liip/functional-test-bundle": "1.0.*",
"doctrine/doctrine-fixtures-bundle": "2.2.*",
"doctrine/data-fixtures": "dev-master",
"fzaninotto/faker": "1.4.*"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin",
"process-timeout": 3000
},
"minimum-stability": "stable",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}