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
2
3 unresolved threads
Show 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
2
3 unresolved threads
Show all comments
Expand
0
0
Merge request reports
Compare
3.0.x
version 9
d0e9a797
1 year ago
version 8
80cf4d48
1 year ago
version 7
d0e0e536
1 year ago
version 6
afe5e64a
1 year ago
version 5
02e96122
1 year ago
version 4
1971bc04
1 year ago
version 3
39ceb111
1 year ago
version 2
3d864ca1
1 year ago
version 1
ea458781
1 year ago
3.0.x (base)
and
version 3
latest version
d0e9a797
10 commits,
1 year ago
version 9
d0e9a797
10 commits,
1 year ago
version 8
80cf4d48
10 commits,
1 year ago
version 7
d0e0e536
9 commits,
1 year ago
version 6
afe5e64a
8 commits,
1 year ago
version 5
02e96122
7 commits,
1 year ago
version 4
1971bc04
6 commits,
1 year ago
version 3
39ceb111
5 commits,
1 year ago
version 2
3d864ca1
4 commits,
1 year ago
version 1
ea458781
2 commits,
1 year ago
2 files
+
11
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
package_manager/tests/src/Build/TemplateProjectTestBase.php
+
9
−
0
Options
@@ -437,6 +437,15 @@ END;
@@ -437,6 +437,15 @@ END;
],
],
'autoload'
=>
$package_info
[
'autoload'
]
??
[],
'autoload'
=>
$package_info
[
'autoload'
]
??
[],
];
];
if
(
isset
(
$package_info
[
'require'
]))
{
foreach
(
array_keys
(
$package_info
[
'require'
])
as
$package_name
)
{
// Do not require polyfill packages for PHP 7 or 8.
if
(
str_starts_with
(
$package_name
,
'symfony/polyfill-php7'
)
||
str_starts_with
(
$package_name
,
'symfony/polyfill-php8'
))
{
unset
(
$package_info
[
'require'
][
$package_name
]);
}
}
$packages
[
$name
][
$version
][
'require'
]
=
$package_info
[
'require'
];
}
// Composer plugins are loaded and activated as early as possible, and
// Composer plugins are loaded and activated as early as possible, and
// they must have a `class` key defined in their `extra` section, along
// they must have a `class` key defined in their `extra` section, along
// with a dependency on `composer-plugin-api` (plus any other real
// with a dependency on `composer-plugin-api` (plus any other real
Loading