Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
automatic_updates
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
automatic_updates
Merge requests
!925
Issue
#3368741
: Drush build test symlinks drush and only passes because it loads classes not in build test project
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3368741
: Drush build test symlinks drush and only passes because it loads classes not in build test project
issue/automatic_updates-3368741:3368741-drush-build-test
into
3.0.x
Overview
5
Commits
10
Pipelines
1
Changes
1
3 unresolved threads
Hide all comments
Merged
Ted Bowman
requested to merge
issue/automatic_updates-3368741:3368741-drush-build-test
into
3.0.x
1 year ago
Overview
5
Commits
10
Pipelines
1
Changes
1
3 unresolved threads
Hide all comments
Expand
0
0
Merge request reports
Viewing commit
266655e7
Show latest version
1 file
+
8
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
266655e7
use require
· 266655e7
Ted Bowman
authored
1 year ago
package_manager/tests/src/Build/TemplateProjectTestBase.php
+
8
−
0
Options
@@ -437,6 +437,14 @@ END;
],
'autoload'
=>
$package_info
[
'autoload'
]
??
[],
];
if
(
isset
(
$package_info
[
'require'
]))
{
foreach
(
array_keys
(
$package_info
[
'require'
])
as
$package_name
)
{
if
(
str_starts_with
(
$package_name
,
'symfony/polyfill-'
))
{
unset
(
$package_info
[
'require'
][
$package_name
]);
}
}
$packages
[
$name
][
$version
][
'require'
]
=
$package_info
[
'require'
];
}
// Composer plugins are loaded and activated as early as possible, and
// they must have a `class` key defined in their `extra` section, along
// with a dependency on `composer-plugin-api` (plus any other real
Loading