-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
79 lines (79 loc) · 2.65 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
{
"name": "openeuropa/oe_corporate_blocks",
"description": "OpenEuropa Corporate Blocks.",
"type": "drupal-module",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"drupal/core": "^10",
"openeuropa/oe_corporate_site_info": "^1.0.0-alpha7"
},
"require-dev": {
"composer/installers": "^1.11",
"drupal/config_devel": "^1.9",
"drupal/core-composer-scaffold": "^10",
"drupal/drupal-extension": "^5.0",
"drush/drush": "^12",
"mikey179/vfsstream": "^1.6",
"openeuropa/behat-transformation-context": "^0.2",
"openeuropa/code-review": "^2.0.0-alpha6",
"openeuropa/oe_multilingual": "^1.13",
"openeuropa/task-runner-drupal-project-symlink": "^1.0-beta6",
"phpspec/prophecy-phpunit": "^2",
"phpunit/phpunit": "^9.0",
"symfony/phpunit-bridge": "^6.0"
},
"scripts": {
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"autoload": {
"psr-4": {
"Drupal\\oe_corporate_blocks\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\oe_corporate_blocks\\": "./tests/src/",
"Drupal\\Tests\\oe_corporate_site_info\\": "./build/modules/contrib/oe_corporate_site_info/tests/src/"
}
},
"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"]
},
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
},
"_readme": [
"Limit phpunit to 9.x until Drupal 10 adds full support.",
"Explicit requirement of symfony/phpunit-bridge to replace drupal/core-dev testing classes and traits."
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
}
}