Skip to content
This repository was archived by the owner on Jan 22, 2018. It is now read-only.

Commit 861c3db

Browse files
committed
Implement wrapper around splitsh
1 parent c3d42b1 commit 861c3db

File tree

11 files changed

+540
-50
lines changed

11 files changed

+540
-50
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Drupal editor configuration normalization
2+
# @see http://editorconfig.org/
3+
4+
# This is the top-most .editorconfig file; do not search in parent directories.
5+
root = true
6+
7+
# All files.
8+
[*]
9+
end_of_line = LF
10+
indent_style = space
11+
indent_size = 2
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
insert_final_newline = true
15+
16+
[composer.json]
17+
indent_size = 4

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ subtree-split.config
33

44
# Ignore the upstream repository
55
upstream
6+
upstream-current
7+
8+
# Composer
9+
vendor

composer.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
{
2-
"name": "drupal/core",
2+
"name": "drupal/core-splitter",
33
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
4-
"license": "GPL-2.0+"
4+
"license": "GPL-2.0+",
5+
"require": {
6+
"webmozart/console": "~1.0@beta"
7+
},
8+
"autoload": {
9+
"psr-4": {
10+
"DrupalCoreSplit\\": "src/"
11+
}
12+
}
513
}

composer.lock

Lines changed: 348 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)