This repository has been archived by the owner on Nov 11, 2019. It is now read-only.
forked from OpenConext/Stepup-gssp-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
122 lines (116 loc) · 4.26 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
{
"name": "surfnet/stepup-gssp-example",
"license": "Apache-2.0",
"description": "Example Generic SAML Stepup Provider.",
"type": "project",
"autoload": {
"psr-4": {
"AppBundle\\": "src/AppBundle"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/OpenConext/Stepup-gssp-bundle"
}
],
"require": {
"php": ">=5.5.9",
"incenteev/composer-parameter-handler": "^2.0",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^3.0.2",
"symfony/monolog-bundle": "^3.1.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/symfony": "3.3.*",
"twig/twig": "^1.0||^2.0",
"surfnet/stepup-gssp-bundle": "dev-feature/152798-metadata-endpoint as 1.0.0"
},
"require-dev": {
"behat/behat": "^3.4",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.2",
"behat/symfony2-extension": "^2.1",
"behatch/contexts": "^2.7",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"malukenho/docheader": "^0.1.6",
"phpmd/phpmd": "^2.6",
"phpunit/phpcov": "^3.1",
"phpunit/phpunit": "^5.7",
"sebastian/phpcpd": "^3.0",
"sensio/generator-bundle": "^3.0",
"sensiolabs/security-checker": "^4.1",
"squizlabs/php_codesniffer": "^3.1",
"symfony/phpunit-bridge": "^3.0"
},
"scripts": {
"test": [
"@lint",
"@static-analysis",
"@phpunit",
"@behat",
"@security-tests"
],
"lint": ["@lint-php", "@lint-yml", "@lint-composer"],
"lint-php": "vendor/bin/parallel-lint app src",
"lint-yml": "bin/console lint:yaml app/config",
"lint-composer": "composer validate",
"static-analysis": ["@license-headers", "@phpmd", "@phpcs", "@phpcpd"],
"license-headers": "vendor/bin/docheader check src/ tests/",
"phpmd": "vendor/bin/docheader check src/ tests/",
"phpcs": [
"vendor/bin/phpcs --standard=phpcs.xml --report=full --warning-severity=0 ./src",
"vendor/bin/phpcs --standard=phpcs_tests.xml --report=full --warning-severity=0 ./tests"
],
"phpcpd": ["vendor/bin/phpcpd ./src", "vendor/bin/phpcpd ./tests"],
"phpunit": "vendor/bin/phpunit tests",
"behat": "vendor/bin/behat --config behat.yml",
"security-tests": "vendor/bin/security-checker security:check --end-point=http://security.sensiolabs.org/check_lock",
"coverage": [
"@phpunit-coverage",
"mkdir -p coverage/reports",
"vendor/bin/phpcov merge coverage/reports --html coverage"
],
"phpunit-coverage": "vendor/bin/phpunit tests --coverage-php coverage/reports/unit.cov",
"symfony-scripts": [
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"sort-packages": true
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": null
}
}