forked from claroline/Claroline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json.dist
110 lines (110 loc) · 4.25 KB
/
composer.json.dist
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
{
"name": "claroline/claroline",
"description": "Claroline Connect",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.4.1",
"sensio/distribution-bundle": "~2.3.4",
"claroline/bundle-recorder": "~3.0",
"claroline/core-bundle": "~3.0",
"claroline/web-installer": ">=1.0.12,<2.0",
"claroline/activity-tool-bundle": "~2.0",
"claroline/announcement-bundle": "~3.1",
"claroline/forum-bundle": "~3.0",
"claroline/image-player-bundle": "~2.0",
"claroline/pdf-player-bundle": "~2.0",
"claroline/rss-reader-bundle": "~3.0",
"claroline/video-player-bundle": "~2.0",
"claroline/web-resource-bundle": "~2.0",
"claroline/scorm-bundle": "~1.0",
"claroline/survey-bundle": "~1.0",
"icap/blog-bundle": ">=1.1.1,<2.0",
"icap/wiki-bundle": ">=3.1.3,<4.0",
"icap/lesson-bundle": "~1.4",
"icap/dropzone-bundle": ">=0.6.13,<=0.7.1",
"ujm/exo-bundle": ">=1.3.2,<2.0",
"innova/path-bundle": ">=2.0.5,<3.0"
},
"require-dev": {
"mockery/mockery": "dev-master@dev",
"hamcrest/hamcrest": "~1.1.0",
"mikey179/vfsStream": "dev-master",
"behat/mink-bundle": "dev-master",
"behat/mink-selenium2-driver": "*",
"behat/mink-goutte-driver": "1.0.*",
"phpunit/phpunit": "3.7.*",
"behat/behat": "*",
"behat/mink": "~1.5.0",
"behat/symfony2-extension": "*",
"behat/mink-extension": "~1.3"
},
"repositories": [
{
"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"]
}
}
}
],
"scripts": {
"pre-install-cmd": [
"Claroline\\BundleRecorder\\ScriptHandler::checkForPendingOperations"
],
"pre-update-cmd": [
"Claroline\\BundleRecorder\\ScriptHandler::checkForPendingOperations",
"Claroline\\CoreBundle\\Library\\Maintenance\\MaintenanceHandler::enableMaintenance"
],
"post-package-install": [
"Claroline\\BundleRecorder\\ScriptHandler::logInstallOperation"
],
"post-package-update": [
"Claroline\\BundleRecorder\\ScriptHandler::logUpdateOperation"
],
"pre-package-uninstall": [
"Claroline\\BundleRecorder\\ScriptHandler::prepareUninstallOperation"
],
"post-package-uninstall": [
"Claroline\\BundleRecorder\\ScriptHandler::logUninstallOperation"
],
"post-install-cmd": [
"Claroline\\BundleRecorder\\ScriptHandler::buildBundleFile",
"Claroline\\CoreBundle\\Library\\Installation\\Refresher::deleteCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
],
"post-update-cmd": [
"Claroline\\BundleRecorder\\ScriptHandler::buildBundleFile",
"Claroline\\CoreBundle\\Library\\Installation\\Refresher::deleteCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
]
},
"config": {
"bin-dir": "bin",
"github-protocols": ["https", "http", "git"],
"cache-files-ttl": 0
},
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "symlink",
"branch-alias": {
"dev-master": "2.4-dev"
}
}
}