forked from OpenConext/OpenConext-engineblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 2.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
{
"name": "openconext/engineblock",
"description": "OpenConext SAML proxy",
"type": "project",
"keywords": ["saml", "proxy", "openconext"],
"homepage": "http://www.openconext.org",
"license": "Apache-2.0",
"support": {
"email": "[email protected]",
"issues": "https://github.com/OpenConext/OpenConext-engineblock/issues",
"source": "https://github.com/OpenConext/OpenConext-engineblock"
},
"require": {
"cssmin/cssmin": "3.0.1",
"dbpatch/dbpatch": "~1.2",
"kriswallsmith/assetic": "~1.2.0",
"monolog/monolog": "~1.13",
"mrclay/minify": "~2.2",
"openconext/engineblock-fixtures": "~0.4",
"openconext/engineblock-metadata": "~1.0",
"openconext/stoker-metadata": "~0.1",
"openid/php-openid": "dev-master#a287b2d85e753c84b3b883ed8ee3ffe8692c8477 as 2.2.2",
"pimple/pimple": "~2.1",
"simplesamlphp/saml2": "~0.6",
"simplesamlphp/simplesamlphp": "~1.13",
"sybio/image-workshop": "~2.0.7",
"zendframework/zendframework1":"~1.12"
},
"require-dev": {
"phake/phake": "2.0.0-beta2",
"phpunit/phpunit": "~4.3"
},
"scripts": {
"pre-autoload-dump": [
"bin/composer/dbpatch-post-install.sh",
"bin/composer/simplesamlphp-post-install.sh",
"bin/composer/zend-framework-post-install.sh"
]
},
"repositories": [
{
"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" ] }
}
}
],
"autoload": {
"psr-0": {
"DbPatch_": "vendor/dbpatch/dbpatch/src/",
"EngineBlock_": "library/",
"EngineBlock_Test": "tests/library/",
"Janus_": "library/",
"SurfConext_": "library/",
"Surfnet_": "library/",
"Api_":"application/modules/",
"Authentication_":"application/modules/",
"Default_":"application/modules/",
"Logout_":"application/modules/",
"Profile_":"application/modules/"
}
}
}