forked from stfalcon/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
106 lines (106 loc) · 4.18 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": "stfalcon/portfolio",
"description": "Engine for portfolio of web-studio stfalcon.com",
"homepage": "https://stfalcon.com",
"type": "project",
"require": {
"php": ">=5.3.3 <5.5",
"symfony/symfony": "2.8.*",
"symfony/assetic-bundle": "2.8.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "3.0.*",
"sensio/distribution-bundle": "4.0.*",
"sensio/framework-extra-bundle": "2.3.*",
"sensio/generator-bundle": "2.3.*",
"sensio/buzz-bundle": "1.0.*",
"twig/extensions": "1.3.*",
"doctrine/orm": "2.5.*",
"doctrine/doctrine-bundle": "1.6.*",
"doctrine/doctrine-fixtures-bundle": "2.2.*",
"doctrine/doctrine-migrations-bundle": "1.1.*",
"gedmo/doctrine-extensions": "2.3.*",
"stof/doctrine-extensions-bundle": "1.2.*",
"fresh/doctrine-enum-bundle": "4.6.*",
"friendsofsymfony/user-bundle": "1.3.*",
"friendsofsymfony/jsrouting-bundle": "1.6.*",
"jms/security-extra-bundle": "1.6.*",
"jms/i18n-routing-bundle": "1.1.*",
"jms/translation-bundle": "1.1.*",
"sonata-project/doctrine-orm-admin-bundle": "2.3.*",
"sonata-project/block-bundle": "2.2.*",
"sonata-project/cache-bundle": "2.2.*",
"sonata-project/intl-bundle": "2.2.*",
"sonata-project/seo-bundle": "2.0.*",
"sonata-project/user-bundle": "2.2.*",
"sonata-project/media-bundle": "2.2.*",
"knplabs/knp-paginator-bundle": "2.5.*",
"a2lix/translation-form-bundle": "1.3",
"avalanche123/imagine-bundle": "dev-master#ded1ffdb5865ff681d8a8e8e6a58d1ad55be3043",
"liip/functional-test-bundle": "1.0.*",
"vich/uploader-bundle": "0.8.*",
"ahmedsamy/hype-mailchimp-bundle": "1.2.*",
"iakumai/sphinxsearch-bundle": "0.2.*",
"knplabs/knp-components": "1.3.*",
"kriswallsmith/assetic": "1.3.*",
"zendframework/zend-feed": "2.3.*",
"zendframework/zend-servicemanager": "2.3.*",
"geshi/geshi": "dev-master",
"geoip2/geoip2": "2.1.*",
"mlehner/gelf-php": "1.0.*",
"fzaninotto/faker": "dev-master",
"sentry/sentry-symfony": "^0.8.7"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"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::prepareDeploymentTarget",
"npm install",
"grunt less",
"grunt autoprefixer",
"grunt csso"
],
"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::prepareDeploymentTarget"
]
},
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
],
"exclude-from-classmap": [
"tests/",
"/Tests/"
]
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"platform": {
"php": "5.4"
}
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}