-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (101 loc) · 2.85 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "su-soe/soe_paragraphs",
"description": "SOE Paragraphs",
"type": "drupal-custom-module",
"homepage": "https://github.com/SU-SOE/soe_paragraphs",
"authors": [],
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/a11ychecker",
"version": "1.1.1",
"type": "drupal-library",
"dist": {
"url": "https://download.ckeditor.com/a11ychecker/releases/a11ychecker_1.1.1.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/balloonpanel",
"version": "4.14.0",
"type": "drupal-library",
"dist": {
"url": "https://download.ckeditor.com/balloonpanel/releases/balloonpanel_4.14.0.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/link",
"version": "4.14.0",
"type": "drupal-library",
"dist": {
"url": "https://download.ckeditor.com/link/releases/link_4.14.0.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/fakeobjects",
"version": "4.14.0",
"type": "drupal-library",
"dist": {
"url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.14.0.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0"
}
}
}
],
"require": {
"drupal/allowed_formats": "^1.3",
"drupal/element_class_formatter": "^1.1",
"drupal/field_formatter_class": "^1.4",
"drupal/paragraphs": "^1.11",
"su-sws/jumpstart_ui": "8.x-dev",
"su-sws/stanford_fields": "8.x-dev",
"su-sws/stanford_text_editor": "8.x-dev"
},
"autoload": {
"psr-4": {
"Drupal\\soe_paragraphs\\": "./src",
"Drupal\\soe_paragraph_cta_list\\": "./modules/soe_paragraph_cta_list/src",
"Drupal\\soe_paragraph_image_cta\\": "./modules/soe_paragraph_image_cta/src",
"Drupal\\soe_paragraph_stories\\": "./modules/soe_paragraph_stories/src"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\soe_paragraphs\\": "./tests/src",
"Drupal\\soe_paragraph_cta_list\\": "./modules/soe_paragraph_cta_list/tests/src",
"Drupal\\soe_paragraph_image_cta\\": "./modules/soe_paragraph_image_cta/tests/src",
"Drupal\\soe_paragraph_stories\\": "./modules/soe_paragraph_stories/tests/src"
}
}
}