-
Notifications
You must be signed in to change notification settings - Fork 30
Download all "real" extensions and skins via Git and not Composer #280
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
Merged
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
7ecf38c
Download all "real" extensions and skins via Git and not Composer
yaronkoren 27718c4
Update composer.canasta.json
yaronkoren 40a312e
Create semantic-result-formats-composer-reqs.patch
yaronkoren d689705
Create semantic-breadcrumb-links-composer-reqs.patch
yaronkoren 0403438
Update composer.canasta.json
yaronkoren 78b423d
Update Dockerfile
yaronkoren d8e199a
Update Dockerfile
yaronkoren f49815d
Create semantic-forms-select-composer-reqs.patch
yaronkoren 159a972
Update Dockerfile
yaronkoren eb729b5
Create semantic-tasks-composer-reqs.patch
yaronkoren 98a93b9
Update Dockerfile
yaronkoren 140c123
Update Dockerfile
yaronkoren 18800c3
Update Dockerfile
yaronkoren dfc77b0
Update Dockerfile
yaronkoren d6ad5a3
Update Dockerfile
yaronkoren 804f0cb
Update semantic-breadcrumb-links-composer-reqs.patch
yaronkoren 45ef84b
Update Dockerfile
yaronkoren 70db162
Update Dockerfile
yaronkoren 2e71582
Update semantic-breadcrumb-links-composer-reqs.patch
yaronkoren c21ea8e
Update Dockerfile
yaronkoren 6c1fe1d
Update Dockerfile
yaronkoren d0d1a35
Update Dockerfile
yaronkoren 006c4ed
Update semantic-tasks-composer-reqs.patch
yaronkoren 562fc52
Update semantic-tasks-composer-reqs.patch
yaronkoren c96e6ab
Update semantic-breadcrumb-links-composer-reqs.patch
yaronkoren e0774a2
Update semantic-forms-select-composer-reqs.patch
yaronkoren 2b84598
Update semantic-result-formats-composer-reqs.patch
yaronkoren c1f9041
Update Dockerfile
yaronkoren 791b0d4
Update semantic-breadcrumb-links-composer-reqs.patch
yaronkoren 3760fb6
Update semantic-breadcrumb-links-composer-reqs.patch
yaronkoren 9de2535
Update semantic-forms-select-composer-reqs.patch
yaronkoren 7f849b5
Update semantic-result-formats-composer-reqs.patch
yaronkoren 23e06af
Update semantic-tasks-composer-reqs.patch
yaronkoren ee7d48b
Update semantic-tasks-composer-reqs.patch
yaronkoren dfeb437
Update semantic-tasks-composer-reqs.patch
yaronkoren a805340
Composer-related fixes
yaronkoren 345026a
Delete semantic-tasks-composer-reqs.patch
yaronkoren a8c99ac
Delete semantic-forms-select-composer-reqs.patch
yaronkoren aae8a27
Update Dockerfile
yaronkoren 344bc41
Merge branch 'master' into composer-to-git
yaronkoren a3644c3
Create semantic-compound-queries-autoload.patch
yaronkoren ac428e4
Create semantic-scribunto-autoload.patch
yaronkoren 3eb3e9d
Update Dockerfile
yaronkoren d73675a
Update Dockerfile
yaronkoren File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
_sources/patches/semantic-breadcrumb-links-composer-reqs.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| diff --git a/composer.json b/composer.json | ||
| index 91a21be..04c8270 100644 | ||
| --- a/composer.json | ||
| +++ b/composer.json | ||
| @@ -28,7 +28,6 @@ | ||
| "require": { | ||
| "php": ">=5.6", | ||
| "composer/installers": "1.*,>=1.0.12", | ||
| - "mediawiki/semantic-media-wiki": "~2.5|~3.0|~4.0", | ||
| "onoi/shared-resources":"~0.2" | ||
| }, | ||
| "require-dev": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| diff --git a/extension.json b/extension.json | ||
| index 11c452d..cad612a 100644 | ||
| --- a/extension.json | ||
| +++ b/extension.json | ||
| @@ -26,6 +26,11 @@ | ||
| "ExtensionFunctions": [ | ||
| "SemanticCompoundQueries::onExtensionFunction" | ||
| ], | ||
| - "load_composer_autoloader": true, | ||
| + "AutoloadNamespaces": { | ||
| + "SCQ\\": "src/" | ||
| + }, | ||
| + "AutoloadClasses": { | ||
| + "SemanticCompoundQueries": "SemanticCompoundQueries.php" | ||
| + }, | ||
| "manifest_version": 2 | ||
| } |
10 changes: 10 additions & 0 deletions
10
_sources/patches/semantic-result-formats-composer-reqs.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| --- a/composer.json | ||
| +++ b/composer.json | ||
| @@ -46,7 +46,6 @@ | ||
| "require": { | ||
| "php": ">=7.3", | ||
| "composer/installers": ">=1.0.1", | ||
| - "mediawiki/semantic-media-wiki": "~3.0|~4.0", | ||
| "nicmart/tree": "^0.2.7", | ||
| "data-values/geo": "~4.0|~3.0|~2.0" | ||
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| diff --git a/extension.json b/extension.json | ||
| index 27f39c2..092b8dc 100644 | ||
| --- a/extension.json | ||
| +++ b/extension.json | ||
| @@ -26,6 +26,11 @@ | ||
| "ExtensionFunctions": [ | ||
| "SemanticScribunto::onExtensionFunction" | ||
| ], | ||
| - "load_composer_autoloader":true, | ||
| + "AutoloadNamespaces": { | ||
| + "SMW\\Scribunto\\": "src/" | ||
| + }, | ||
| + "AutoloadClasses": { | ||
| + "SemanticScribunto": "SemanticScribunto.php" | ||
| + }, | ||
| "manifest_version": 2 | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.