forked from openeuropa/oe_authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 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
{
"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": ">=7.4",
"cweagans/composer-patches": "^1.7",
"drupal/cas": "^1.7",
"drupal/core": "^9.2"
},
"require-dev": {
"composer/installers": "^1.11",
"drupal/cas_mock_server": "^1.1",
"drupal/config_devel": "^1.2",
"drupal/core-composer-scaffold": "^9.2",
"drupal/core-dev": "^9.2",
"drupal/drupal-extension": "^4.0",
"drush/drush": "^10.3",
"egulias/email-validator": "^2.1.22 || ^3.0",
"nikic/php-parser": "^4.12.0",
"openeuropa/behat-transformation-context": "^0.1",
"openeuropa/code-review": "^2.0",
"openeuropa/task-runner-drupal-project-symlink": "^1.0.0-beta5",
"phpspec/prophecy-phpunit": "^2",
"symfony/dom-crawler": "^4.4.12"
},
"_readme": [
"Explicit minimum version requirement for symfony/dom-crawler due to its lower versions using the deprecated function libxml_disable_entity_loader() in PHP8.",
"Explicit requirement for egulias/email-validator due to https://www.drupal.org/project/drupal/issues/3061074#comment-14300579. It can be removed when Drupal core 9.2 support is droppped."
],
"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": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"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"]
},
"patches": {
"drupal/cas": {
"https://www.drupal.org/project/cas/issues/3221111": "https://www.drupal.org/files/issues/2021-11-22/3221111-allow-setting-reason-20.diff"
}
},
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"phpro/grumphp": true
}
}
}