forked from stfalcon/fwdays
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
101 lines (101 loc) · 3.79 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
{
"name": "stfalcon/fwdays",
"type": "project",
"description": "Site for conference Frameworks Days",
"homepage": "http://fwdays.com/",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/stfalcon-studio/MpdfPortBundle.git"
}
],
"require": {
"php": ">=5.4 <5.5",
"symfony/symfony": "2.8.*",
"symfony/assetic-bundle": "2.8.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "2.11.*",
"doctrine/orm": "2.4.*",
"doctrine/doctrine-bundle": "1.6.*",
"doctrine/doctrine-fixtures-bundle": "2.2.*",
"doctrine/doctrine-migrations-bundle": "1.0.*",
"twig/extensions": "1.3.*",
"sensio/distribution-bundle": "4.0.*",
"sensio/framework-extra-bundle": "3.0.*",
"sensio/generator-bundle": "2.4.*",
"sensio/buzz-bundle": "1.1.*",
"sonata-project/admin-bundle": "3.23.*",
"sonata-project/intl-bundle": "2.3.*",
"sonata-project/block-bundle": "3.4.*",
"sonata-project/core-bundle": "3.5.*",
"sonata-project/doctrine-orm-admin-bundle": "3.1.7",
"jms/security-extra-bundle": "1.6.*",
"friendsofsymfony/user-bundle": "1.3.*",
"stof/doctrine-extensions-bundle": "1.2.*",
"vich/uploader-bundle": "0.8.1",
"ornicar/gravatar-bundle" : "1.1.*",
"tfox/mpdf-port-bundle": "dev-fix-default",
"mlehner/gelf-php": "1.1.*",
"endroid/qrcode": "1.6.*",
"accord/mandrill-swiftmailer-bundle": "^1.2",
"a2lix/translation-form-bundle": "~1.3",
"ibrows/sonata-translation-bundle": "^1.1",
"jms/i18n-routing-bundle": "^2.0",
"gedmo/doctrine-extensions": "^2.4",
"friendsofsymfony/jsrouting-bundle": "^1.6",
"hwi/oauth-bundle": "^0.5.3",
"suncat/mobile-detect-bundle": "^0.10.3",
"liip/imagine-bundle": "^1.9",
"sentry/sentry-symfony": "0.8.*",
"egulias/email-validator": "^1.2",
"maxmind/geoip": "^1.1",
"cmen/google-charts-bundle": "^2.2",
"beberlei/DoctrineExtensions": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"liip/functional-test-bundle": "1.2.*",
"behat/behat": "2.5.*",
"behat/mink": "1.7.*",
"behat/mink-selenium2-driver": "1.2.*",
"behat/symfony2-extension": "1.1.*",
"behat/mink-extension": "1.3.*",
"behat/common-contexts": "1.2.*",
"behat/mink-browserkit-driver": "1.2.*",
"polishsymfonycommunity/symfony2-mocker-extension": "1.0.*",
"phpspec/prophecy": "1.6.*",
"escapestudios/symfony2-coding-standard": "^3.4",
"friendsofphp/php-cs-fixer": "^2.2",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
]
},
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"platform": {
"php": "5.4"
}
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "symlink"
}
}