-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
executable file
·106 lines (106 loc) · 4.38 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "seventag/seventag",
"license": "AGPLv3",
"type": "project",
"description": "The \"7Tag\" application",
"autoload": {
"psr-4": {
"": "src/",
"Features\\": "behat/Features/"
}
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.7.*",
"doctrine/orm": "^2.4.8",
"doctrine/dbal": "<2.5",
"doctrine/doctrine-bundle": "~1.4",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~4.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"friendsofsymfony/rest-bundle": "~1.5",
"jms/serializer-bundle": "0.13.*",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"nelmio/api-doc-bundle": "^2.11",
"friendsofsymfony/user-bundle": "v2.0.0-alpha3",
"jms/metadata": "~1.5",
"friendsofsymfony/oauth-server-bundle": "~1.4",
"stof/doctrine-extensions-bundle" : "1.1.*",
"myclabs/deep-copy" : "~1.3",
"friendsofsymfony/http-cache-bundle" : "~1.2",
"matthiasmullie/minify": "~1.3",
"doctrine/migrations": "1.0.*@dev",
"doctrine/doctrine-migrations-bundle": "1.0.*",
"knplabs/knp-gaufrette-bundle" : "0.1.7",
"aws/aws-sdk-php" : "2.8.*",
"league/flysystem" : "1.0.*",
"guzzlehttp/guzzle": "~5.3.0",
"symfony/process" : "2.7.*",
"raven/raven": "^0.13.0",
"sonata-project/notification-bundle": "^2.3",
"liip/monitor-bundle": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "4.5.*",
"sensio/generator-bundle": "~2.3",
"liip/functional-test-bundle": "~1.0",
"phploc/phploc": "2.1.*",
"pdepend/pdepend" : "2.0.*",
"phpmd/phpmd": "2.2.*",
"sebastian/phpcpd": "2.0.*",
"squizlabs/php_codesniffer" : "2.3.*",
"mayflower/php-codebrowser": "~1.1",
"behat/behat" : "dev-master",
"behat/symfony2-extension" : "2.0.*",
"behat/mink-extension" : "2.0.*",
"behat/mink-browserkit-driver" : "1.2.*",
"fabpot/goutte" : "2.0.*",
"symfony/var-dumper" : "2.6.*",
"codeception/codeception" : "2.0.11",
"coduo/php-matcher" : "1.1.*",
"behat/mink-selenium2-driver": "^1.2",
"satooshi/php-coveralls": "dev-master"
},
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget",
"Liip\\MonitorBundle\\Composer\\ScriptHandler::checkHealth"
],
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget",
"Liip\\MonitorBundle\\Composer\\ScriptHandler::checkHealth"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.7-dev"
}
}
}