forked from OpenConext/OpenConext-engineblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (100 loc) · 3.3 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": "surfnet/openconextengineblock",
"description": "Surfnet OpenConext SAML proxy",
"repositories": [
{
"type": "composer",
"url": "https://raw.github.com/cpliakas/simplesamlphp-composer/master"
},
{
"type":"package",
"package": {
"name": "zendframework/zendframework1",
"version": "1.10.9",
"dist": {
"url": "https://packages.zendframework.com/releases/ZendFramework-1.10.9/ZendFramework-1.10.9-minimal.zip",
"type": "zip"
},
"autoload": {
"psr-0": {
"Zend_": "library/"
}
}
}
},
{
"type": "package",
"package": {
"name": "apache/shindig",
"version": "1094333",
"source": {
"type": "svn",
"url": "http://svn.apache.org/repos/asf/shindig/trunk",
"reference": "php@1094333"
},
"autoload" : {
"classmap" : [
"external/OAuth",
"src"
]
}
}
},
{
"type": "package",
"package": {
"name": "cssmin/cssmin",
"version": "3.0.1",
"dist": { "url": "http://cssmin.googlecode.com/files/cssmin-v3.0.1.php", "type": "file" },
"autoload": { "classmap": [ "cssmin-v3.0.1.php" ] }
}
}
],
"require": {
"pimple/pimple": "1.0.2",
"simplesamlphp/simplesamlphp": "1.9.0",
"dbpatch/dbpatch": "1.1.1",
"zendframework/zendframework1":"1.10.9",
"apache/shindig":"1094333",
"kriswallsmith/assetic": "1.2.*@dev",
"mrclay/minify": "2.1.7",
"cssmin/cssmin": "3.0.1"
},
"require-dev": {
"phpunit/phpunit": "3.7.19",
"phake/phake": "2.0.0-alpha2",
"behat/behat": "2.4.6",
"behat/mink": "1.5.0",
"behat/mink-extension": "1.1.4",
"behat/mink-goutte-driver": "1.0.9"
},
"scripts": {
"pre-autoload-dump": [
"bin/composer/dbpatch-post-install.sh",
"bin/composer/simplesamlphp-post-install.sh",
"bin/composer/zend-framework-post-install.sh",
"bin/composer/shindig-post-install.sh"
]
},
"autoload": {
"psr-0": {
"DbPatch_": "vendor/dbpatch/dbpatch/src/",
"EngineBlock_": "library/",
"EngineBlock_Test": "tests/library/",
"Grouper_": "library/",
"Janus_": "library/",
"OpenSocial_": "library/",
"SurfConext_": "library/",
"Surfnet_": "library/",
"Authentication_":"application/modules/",
"Cron_":"application/modules/",
"Default_":"application/modules/",
"Dummy_":"application/modules/",
"Logout_":"application/modules/",
"Profile_":"application/modules/",
"Service_":"application/modules/",
"Social_":"application/modules/",
"VoManage_":"application/modules/"
}
}
}