-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·54 lines (54 loc) · 1.72 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
{
"name": "su-sws/stanford_migrate",
"description": "Stanford Migrate Helper functions",
"type": "drupal-custom-module",
"homepage": "https://github.com/SU-SWS/stanford_migrate",
"authors": [],
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": ">=8.0",
"drupal/core": "^10.3 || ^11",
"drupal/empty_fields": "^1.0@beta",
"drupal/migrate_file": "^2.0 || ^3.0",
"drupal/migrate_plus": "^6.0",
"drupal/migrate_source_csv": "^3.4",
"drupal/migrate_tools": "^6.0",
"drupal/readonly_field_widget": "^1.6",
"drupal/ultimate_cron": "^2.0@alpha",
"joshfraser/php-name-parser": "dev-master"
},
"require-dev": {
"drupal/entity_reference_revisions": "^1.9"
},
"extra": {
"patches": {
"drupal/readonly_field_widget":{
"https://www.drupal.org/project/readonly_field_widget/issues/3220671": "https://www.drupal.org/files/issues/2024-09-23/third-party-settings-3220671-8.patch"
},
"drupal/migrate_plus": {
"https://www.drupal.org/project/migrate_plus/issues/2837684": "https://www.drupal.org/files/issues/2023-01-13/2837684-14-migrate-plus-xml-return-as-xml.patch"
}
}
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Drupal\\stanford_migrate\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\stanford_migrate\\": "./tests/src"
}
}
}