Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NEPT-666 - MULTISITE-19316: First draft for testing, couple issues still #1868

Closed
wants to merge 38 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
484fcf1
First draft for testing, couple issues still
Jan 26, 2018
0212e97
Use symlinks instead of copy
Jan 26, 2018
2108810
Reset props
Jan 26, 2018
1c0041b
Reset props
Jan 26, 2018
4433879
Symlink core
Jan 26, 2018
ea4c85c
Update
Jan 27, 2018
72b128e
Cleanup communities
Jan 27, 2018
9aba2bd
Re-run
Jan 27, 2018
0cd4202
Fix
Jan 27, 2018
1a5def9
Update post install
Jan 27, 2018
12c2594
Add name and type
Jan 27, 2018
fe19b28
Create drupal core
Jan 27, 2018
b028320
Temp change name
Jan 27, 2018
f1989f6
PUt a version
Jan 27, 2018
740ed3c
Release system
Jan 28, 2018
f858109
Remove installer paths
Jan 28, 2018
91204a7
Cleanup
Jan 28, 2018
13b4071
Fix mpdf
Jan 28, 2018
53549a1
Save
Jan 28, 2018
7618084
Release commmand functional
Jan 28, 2018
dcb8fb8
Update release stuf
Jan 29, 2018
fed2ac5
Create packages.json
Feb 3, 2018
9c977ff
Update packages.json
Feb 3, 2018
0d4b6c7
Update packages.json
Feb 3, 2018
9f06669
Update packages.json
Feb 3, 2018
0a15cff
File fixes
Feb 3, 2018
e67fa2c
Merge remote-tracking branch 'platform-production/master'
Feb 3, 2018
f91ab97
Update to 2.4.77 for comparison
Feb 3, 2018
1e63933
Generate it.
Feb 3, 2018
9b237a9
Update packages.json
Feb 4, 2018
0bb3c8c
Update packages.json
Feb 4, 2018
acff2b2
Update packages.json
Feb 4, 2018
eb4c156
Update packages.json
Feb 4, 2018
5f35fa8
Update packages.json
Feb 4, 2018
11e3cc0
Update packages.json
Feb 4, 2018
7ce5aeb
Update packages.json
Feb 4, 2018
1130b39
Update packages.json
Feb 4, 2018
07e0768
Update packages.json
Feb 4, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ bin/
build/
tmp/
vendor/
/drush

# Ignore contrib modules, themes and libraries in the symlinked profiles folder.
profiles/multisite_drupal_*/libraries
Expand Down
61 changes: 57 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,31 @@
{
"name": "verbruggenalex/platform-dev",
"type": "drupal-core",
"version": "2.4.73",
"require": {
"composer/installers": "~1.0",
"cweagans/composer-patches": "~1.0",
"wikimedia/composer-merge-plugin": "dev-master",
"php": ">=5.4.0",
"ext-json": "*",
"ext-phar": "*",
"ext-xml": "*"
},
"require-dev": {
"drupal/phingdrushtask": "^1.1",
"drupol/phingbehattask": "^1.0",
"drush/drush": "8.0.5",
"ec-europa/drush-m2c": "dev-master",
"ec-europa/oe-task-runner": "dev-master",
"ec-europa/qa-automation": "^3.0",
"ext-json": "*",
"ext-phar": "*",
"ext-xml": "*",
"lesstif/php-jira-rest-client": "^1.8.0",
"release/multisite_drupal_standard": "dev-master as 1.0",
"release/multisite_drupal_communities": "dev-master as 1.0",
"pear/versioncontrol_git": "dev-master",
"pfrenssen/phpcs-pre-push": "1.0",
"phing/phing": "~2",
"wimg/php-compatibility": "~7.0.7"
"knplabs/github-api": "^2.7",
"php-http/guzzle6-adapter": "^1.1"
},
"prefer-stable": true,
"autoload": {
Expand All @@ -20,6 +34,10 @@
}
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/7"
},
{
"type": "vcs",
"url": "https://git.drupal.org/project/phingdrushtask.git"
Expand All @@ -36,6 +54,30 @@
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "release/multisite_drupal_standard",
"version": "dev-master",
"source": {
"url": "[email protected]:verbruggenalex/multisite_drupal_standard.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "release/multisite_drupal_communities",
"version": "dev-master",
"source": {
"url": "[email protected]:verbruggenalex/multisite_drupal_communities.git",
"type": "git",
"reference": "master"
}
}
}
],
"scripts": {
Expand All @@ -49,5 +91,16 @@
"config": {
"bin-dir": "bin/",
"process-timeout": 1200
},
"extra": {
"installer-paths": {
"build/": ["type:drupal-core"],
"build/profiles/{$name}/": ["type:drupal-profile"],
"vendor/{$vendor}/{$name}/": [
"drupal/phingdrushtask",
"release/multisite_drupal_standard",
"release/multisite_drupal_communities"
]
}
}
}
Loading