forked from academic/vipa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
145 lines (145 loc) · 4.28 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "ojs/ojs",
"license": "MIT",
"type": "project",
"description": "Open Journal Software",
"version": "1.6.0-dev",
"keywords": [
"ojs",
"journal software",
"open journal software"
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"Ojs\\": "src/Ojs"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"repositories": [
{
"type": "git",
"url": "https://github.com/bulutyazilim/JMSTranslationBundle.git"
},
{
"type": "git",
"url": "https://github.com/bulutyazilim/ProblematicAclManagerBundle.git"
},
{
"type": "git",
"url": "https://github.com/bulutyazilim/FOSUserBundle.git"
},
{
"type": "git",
"url": "https://github.com/bulutyazilim/FOSElasticaBundle.git"
},
{
"type": "git",
"url": "https://github.com/bulutyazilim/Faker.git"
},
{
"type": "vcs",
"url": "https://github.com/ismailbaskin/HWIOAuthBundle.git"
}
],
"require": {
"php": ">=5.5.9",
"symfony/symfony": "~2.8",
"doctrine/orm": "~2.5",
"doctrine/doctrine-bundle": "~1.6",
"twig/extensions": "~1.3",
"symfony/assetic-bundle": "~2.8",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.10",
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "~3.0",
"sensio/generator-bundle": "~3.0",
"incenteev/composer-parameter-handler": "~2.1",
"doctrine/doctrine-fixtures-bundle": "~2.3",
"friendsofsymfony/rest-bundle": "~1.7",
"jms/serializer-bundle": "~1.1",
"nelmio/api-doc-bundle": "~2.12",
"stof/doctrine-extensions-bundle": "~1.2",
"caseyamcl/Phpoaipmh": "~2.4",
"knplabs/knp-paginator-bundle": "~2.5",
"friendsofsymfony/elastica-bundle": "~4.0",
"braincrafted/bootstrap-bundle": "~2.2",
"ircmaxell/password-compat": "~1.0",
"pagerfanta/pagerfanta": "1.0.3",
"white-october/pagerfanta-bundle": "~1.0",
"apy/datagrid-bundle": "~2.2",
"ojs/import-bundle": "~1.0",
"jms/di-extra-bundle": "~1.7",
"stephanecollot/datetimepicker-bundle": "~1.0",
"problematic/acl-manager-bundle": "~1.0",
"a2lix/translation-form-bundle": "~2.1",
"prezent/doctrine-translatable-bundle": "~1.0",
"friendsofsymfony/jsrouting-bundle": "~1.6",
"jbouzekri/file-uploader-bundle": "~3.1",
"norzechowicz/aceeditor-bundle": "~0.1",
"friendsofsymfony/user-bundle": "~2.0",
"hwi/oauth-bundle": "dev-orcid",
"knplabs/knp-menu-bundle": "~2.1",
"wikimedia/composer-merge-plugin": "~1.3",
"jms/translation-bundle": "~2.0",
"bulutyazilim/location-bundle": "~1.0",
"tetranz/select2entity-bundle": "~2.3",
"baskin/history-bundle": "dev-master",
"presta/sitemap-bundle": "~1.4",
"openjournalsoftware/bibtex": "~0.2",
"exercise/htmlpurifier-bundle": "~0.2",
"ojs/export-bundle": "dev-master",
"willdurand/js-translation-bundle": "^2.5"
},
"require-dev": {
"wdalmut/php-deb-packager": "^0.0.13",
"fzaninotto/faker": "~1.6",
"nelmio/alice": "1.7.2",
"h4cc/alice-fixtures-bundle": "~0.5",
"liip/functional-test-bundle": "^1.6",
"liuggio/fastest": "dev-master",
"symfony/phpunit-bridge": "~2.7"
},
"scripts": {
"symfony-scripts": [
"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"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "1.2.0-dev"
},
"merge-plugin": {
"include": [
"thirdparty/*.json"
],
"recurse": false,
"replace": false,
"merge-extra": false
}
}
}