-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
59 lines (59 loc) · 1.75 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
{
"name": "os2forms/os2forms_forloeb_profile",
"type": "drupal-profile",
"description": "This profile adds the configuration and initial install of OS2forms 2.1 med Forløb.",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "EUPL-1.2",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"cweagans/composer-patches": "^1.6.5",
"drupal/gin": "^3.0-rc",
"drupal/core": "^9",
"drush/drush": "^11.4",
"os2forms/os2forms": "^3.6",
"os2web/os2web_simplesaml": "8.x-dev",
"drupal/cache_control_override": "^1.1|^2.0"
},
"require-dev": {
"drupal/coder": "^8.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patches": {}
},
"scripts": {
"coding-standards-check/phpcs": [
"phpcs --standard=phpcs.xml.dist"
],
"coding-standards-check": [
"@coding-standards-check/phpcs"
],
"coding-standards-apply/phpcs": [
"phpcbf --standard=phpcs.xml.dist"
],
"coding-standards-apply": [
"@coding-standards-apply/phpcs"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"simplesamlphp/composer-module-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true,
"zaporylie/composer-drupal-optimizations": true
}
}
}