-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
86 lines (86 loc) · 3.01 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
{
"name": "openeuropa/oe_authentication",
"description": "Authentication against the OpenEuropa Authentication service.",
"type": "drupal-module",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"drupal/cas": "^3.0",
"drupal/core": "^10.3 || ^11.0"
},
"require-dev": {
"composer/installers": "^1.11",
"drupal/cas_mock_server": "^2.0.1",
"drupal/core-composer-scaffold": "^10.3 || ^11.0",
"drupal/drupal-extension": "^5.0",
"drush/drush": "^12 || ^13",
"mikey179/vfsstream": "^1.6.10",
"nikic/php-parser": "^4",
"openeuropa/behat-transformation-context": "^0.2",
"openeuropa/code-review-drupal": "^1.0.0-alpha",
"openeuropa/task-runner-drupal-project-symlink": "^1.0",
"phpspec/prophecy-phpunit": "^2",
"symfony/phpunit-bridge": "^6.2"
},
"scripts": {
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"autoload": {
"psr-4": {
"Drupal\\oe_authentication\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\oe_authentication\\": "./tests/",
"Drupal\\Tests\\cas_mock_server\\": "./build/modules/contrib/cas_mock_server/tests/src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "git",
"url": "https://github.com/openeuropa/DrupalDriver.git"
},
{
"type": "git",
"url": "https://github.com/openeuropa/code-review-drupal.git"
}
],
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"installer-paths": {
"build/core": ["type:drupal-core"],
"build/profiles/contrib/{$name}": ["type:drupal-profile"],
"build/modules/contrib/{$name}": ["type:drupal-module"],
"build/themes/contrib/{$name}": ["type:drupal-theme"]
},
"_readme": [
"Explicit minimum version requirement of symfony/phpunit-bridge to replace drupal/core-dev testing classes and traits.",
"Explicit requirement of mikey179/vfsstream to remove when drupal/core-dev is reinstated.",
"Explicit requirement of nikic/php-parser ^4 as later versions are not compatible with grumphp @see https://github.com/phpro/grumphp/issues/1119"
],
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"phpro/grumphp-shim": true,
"phpstan/extension-installer": true
}
}
}