forked from claroline/Claroline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
136 lines (136 loc) · 5.09 KB
/
composer.json
File metadata and controls
136 lines (136 loc) · 5.09 KB
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
{
"name": "claroline/claronext",
"description": "Claroline 2.0",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.3.*",
"doctrine/orm": ">=2.2,<2.5-dev",
"doctrine/doctrine-bundle": ">=2.1",
"twig/extensions": "1.0.*",
"symfony/assetic-bundle": "2.3.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "2.3.*",
"sensio/distribution-bundle": "2.3.*",
"sensio/framework-extra-bundle": "2.3.*",
"sensio/generator-bundle": "2.3.*",
"incenteev/composer-parameter-handler": "~2.0",
"jms/security-extra-bundle": "dev-master",
"jms/di-extra-bundle": "dev-master",
"stof/doctrine-extensions-bundle": "dev-master",
"doctrine/doctrine-migrations-bundle": "dev-master",
"doctrine/doctrine-fixtures-bundle": "dev-master",
"friendsofsymfony/jsrouting-bundle": "dev-master",
"stfalcon/tinymce-bundle": "dev-master",
"claroline/front-end-bundle": "dev-master",
"claroline/taxonomy-bundle": "dev-master",
"claroline/migration-bundle": "dev-master",
"jms/twig-js-bundle": "dev-master",
"white-october/pagerfanta-bundle": "dev-master",
"idci/exporter-bundle": "dev-master",
"leafo/lessphp": "master",
"twbs/bootstrap": "3.0.0",
"fortawesome/fontawesome": "dev-master",
"xaguilars/bootstrap-colorpicker": "dev-master",
"zenstruck/form-bundle": "dev-master",
"besimple/sso-auth-bundle": "*",
"willdurand/expose-translation-bundle": "dev-master"
},
"require-dev": {
"mockery/mockery": "dev-master@dev",
"hamcrest/hamcrest": "1.1.0",
"mikey179/vfsStream": "dev-master"
},
"repositories": [
{
"type": "package",
"package": {
"name": "fortawesome/fontawesome",
"version": "dev-master",
"dist": {
"url": "https://github.com/FortAwesome/Font-Awesome/zipball/master",
"type": "zip"
},
"source": {
"url": "https://github.com/FortAwesome/Font-Awesome.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "xaguilars/bootstrap-colorpicker",
"version": "dev-master",
"dist": {
"url": "https://github.com/xaguilars/bootstrap-colorpicker/archive/master.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/xaguilars/bootstrap-colorpicker",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "hamcrest/hamcrest",
"version": "1.1.0",
"dist": {
"type": "zip",
"url": "https://hamcrest.googlecode.com/files/hamcrest-php-1.1.0.zip"
},
"include-path": ["Hamcrest-1.1.0/"],
"autoload": {
"psr-0": { "Hamcrest_": "Hamcrest-1.1.0/" },
"files": ["Hamcrest-1.1.0/Hamcrest/Hamcrest.php"]
}
}
},
{
"type": "vcs",
"url": "http://github.com/claroline/FrontEndBundle"
},
{
"type": "vcs",
"url": "http://github.com/claroline/TaxonomyBundle"
}
],
"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",
"github-protocols": ["https", "http", "git"]
},
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "symlink",
"incenteev-parameters": {
"file": "app/config/local/parameters.yml"
},
"branch-alias": {
"dev-master": "2.3-dev"
}
}
}