Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
project_analysis
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
project_analysis
Merge requests
!16
Resolve
#3397247
"Drupal 10 to 11"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve
#3397247
"Drupal 10 to 11"
issue/project_analysis-3397247:3397247-drupal-10-to-11
into
master
Overview
0
Commits
46
Pipelines
10
Changes
31
Merged
Björn Brala
requested to merge
issue/project_analysis-3397247:3397247-drupal-10-to-11
into
master
1 year ago
Overview
0
Commits
46
Pipelines
10
Changes
31
Expand
Closes
#3397247
0
0
Merge request reports
Compare
master
version 8
455e9bbe
1 year ago
version 7
6320276d
1 year ago
version 6
6929afbf
1 year ago
version 5
f9a2f89b
1 year ago
version 4
fc4f0144
1 year ago
version 3
8a60cbbf
1 year ago
version 2
f54e2c48
1 year ago
version 1
896c6c73
1 year ago
master (base)
and
latest version
latest version
455e9bbe
46 commits,
1 year ago
version 8
455e9bbe
46 commits,
1 year ago
version 7
6320276d
45 commits,
1 year ago
version 6
6929afbf
44 commits,
1 year ago
version 5
f9a2f89b
43 commits,
1 year ago
version 4
fc4f0144
40 commits,
1 year ago
version 3
8a60cbbf
39 commits,
1 year ago
version 2
f54e2c48
38 commits,
1 year ago
version 1
896c6c73
37 commits,
1 year ago
31 files
+
286
−
157
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
31
Search (e.g. *.vue) (Ctrl+P)
project_analysis_utils/src/ComposerJsonUpdater.php
+
2
−
2
Options
@@ -15,9 +15,9 @@ class ComposerJsonUpdater extends UpdaterBase {
* @throws \Exception
*/
public
static
function
update
(
$file
,
string
$project_version
)
{
$minimum_core_minor
=
0
;
$minimum_core_minor
=
NULL
;
if
(
file_exists
(
self
::
getUpgradeStatusXML
(
$project_version
,
'post'
)))
{
$minimum_core_minor
=
static
::
getMinimumCore
9
Minor
(
$project_version
);
$minimum_core_minor
=
static
::
getMinimumCoreMinor
(
$project_version
);
}
$json
=
new
JsonFile
(
$file
);
Loading