forked from OpenConext/OpenConext-engineblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
133 lines (133 loc) · 4.86 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
{
"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": {
"php": ">=5.6,<7",
"ext-mbstring": "*",
"beberlei/assert": "^2.6",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-migrations-bundle": "^1.1",
"doctrine/orm": "~2.5",
"guzzlehttp/guzzle": "^6.3",
"incenteev/composer-parameter-handler": "~2.0",
"monolog/monolog": "~1.13",
"openconext/monitor-bundle": "^1.0",
"openconext/saml-value-object": "^1.3",
"pimple/pimple": "~2.1",
"ramsey/uuid": "^3.3.0",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0",
"sensio/generator-bundle": "^3.0",
"simplesamlphp/saml2": "3.2.*",
"swiftmailer/swiftmailer": "^5.4",
"sybio/image-workshop": "~2.0.7",
"symfony/monolog-bundle": "^3.1.0",
"symfony/swiftmailer-bundle": "^2.6",
"symfony/symfony": "3.4.*",
"twig/extensions": "^1.5",
"twig/twig": "^1.35"
},
"require-dev": {
"behat/behat": "~3.0",
"behat/mink": "~1.7",
"behat/mink-extension": "~2.0",
"behat/mink-goutte-driver": "~1.0",
"behat/mink-selenium2-driver": "^1.3",
"behat/symfony2-extension": "~2.0",
"ingenerator/behat-tableassert": "^1.1",
"league/flysystem": "^1.0",
"liip/functional-test-bundle": "^1.7",
"mockery/mockery": "0.9.4",
"phake/phake": "2.1",
"phpcompatibility/php-compatibility": "^8.2",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.8",
"symfony/phpunit-bridge": "^3.0"
},
"replace": {
"symfony/polyfill-mbstring": "1.99",
"symfony/polyfill-php54": "1.99",
"symfony/polyfill-php55": "1.99",
"symfony/polyfill-php56": "1.99"
},
"scripts": {
"post-autoload-dump": [
"bin/composer/dump-required-ini-params.sh"
],
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"prepare-env": [
"bin/composer/dump-required-ini-params.sh",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache"
]
},
"autoload": {
"psr-0": {
"EngineBlock_": "library/",
"EngineBlock_Test": "tests/library/",
"Pdp_": "library/",
"AttributeAggregation_": "library/",
"SurfConext_": "library/",
"Surfnet_": "library/"
},
"psr-4": {
"OpenConext\\": "src/OpenConext"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"OpenConext\\": ["tests/unit/OpenConext/", "tests/integration/OpenConext/", "tests/functional/OpenConext/"]
},
"files": [
"vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php"
]
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "5.6"
},
"sort-packages": true
},
"extra": {
"symfony-app-dir": "app",
"symfony-var-dir": "app",
"symfony-bin-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": [
{
"file": "app/config/parameters.yml"
},
{
"file": "app/config/functional_testing.yml"
}
]
}
}