Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Drupal Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Composer
plugin
Drupal Environment
Commits
98d5b3d7
Commit
98d5b3d7
authored
9 months ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
#17
Implement default settings for composer.json
parent
38777b90
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!230
Merging develop into main
Pipeline
#1255181
skipped
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
defaults/config.json
+4
-5
4 additions, 5 deletions
defaults/config.json
src/Plugin.php
+16
-13
16 additions, 13 deletions
src/Plugin.php
with
20 additions
and
18 deletions
defaults/config.json
+
4
−
5
View file @
98d5b3d7
...
@@ -9,17 +9,16 @@
...
@@ -9,17 +9,16 @@
],
],
"allow-plugins"
:
{
"allow-plugins"
:
{
"composer/installers"
:
true
,
"composer/installers"
:
true
,
"dealerdirect/phpcodesniffer-composer-installer"
:
true
,
"cweagans/composer-patches"
:
true
,
"cweagans/composer-patches"
:
true
,
"dealerdirect/phpcodesniffer-composer-installer"
:
true
,
"drupal/core-composer-scaffold"
:
true
,
"drupal/core-composer-scaffold"
:
true
,
"drupal/core-vendor-hardening"
:
true
,
"endroid/installer"
:
true
,
"endroid/installer"
:
true
,
"bitegra/*"
:
true
,
"lakedrops/*"
:
true
,
"lakedrops/*"
:
true
,
"php-http/discovery"
:
false
,
"phpstan/extension-installer"
:
true
,
"mxr576/ddqg-composer-audit"
:
true
,
"mxr576/ddqg-composer-audit"
:
true
,
"oomphinc/composer-installers-extender"
:
true
,
"oomphinc/composer-installers-extender"
:
true
,
"drupal/core-vendor-hardening"
:
true
,
"php-http/discovery"
:
false
,
"phpstan/extension-installer"
:
true
,
"zodiacmedia/drupal-libraries-installer"
:
true
"zodiacmedia/drupal-libraries-installer"
:
true
}
}
}
}
This diff is collapsed.
Click to expand it.
src/Plugin.php
+
16
−
13
View file @
98d5b3d7
...
@@ -3,14 +3,12 @@
...
@@ -3,14 +3,12 @@
namespace
LakeDrops\DrupalEnvironment
;
namespace
LakeDrops\DrupalEnvironment
;
use
Composer\Composer
;
use
Composer\Composer
;
use
Composer\Config
;
use
Composer\IO\IOInterface
;
use
Composer\IO\IOInterface
;
use
Composer\Plugin\Capability\CommandProvider
as
ComposerCommandProvider
;
use
Composer\Plugin\Capability\CommandProvider
as
ComposerCommandProvider
;
use
Composer\Script\Event
;
use
Composer\Script\Event
;
use
Composer\Script\ScriptEvents
;
use
Composer\Script\ScriptEvents
;
use
Drupal\Composer\Plugin\Scaffold\Handler
as
DrupalScaffoldHandler
;
use
Drupal\Composer\Plugin\Scaffold\Handler
as
DrupalScaffoldHandler
;
use
LakeDrops\Component\Composer\BasePlugin
;
use
LakeDrops\Component\Composer\BasePlugin
;
use
LakeDrops\Component\Composer\NestedArray
;
/**
/**
* Composer plugin for handling drupal scaffold.
* Composer plugin for handling drupal scaffold.
...
@@ -29,20 +27,21 @@ class Plugin extends BasePlugin {
...
@@ -29,20 +27,21 @@ class Plugin extends BasePlugin {
*/
*/
public
function
activate
(
Composer
$composer
,
IOInterface
$io
):
void
{
public
function
activate
(
Composer
$composer
,
IOInterface
$io
):
void
{
parent
::
activate
(
$composer
,
$io
);
parent
::
activate
(
$composer
,
$io
);
$this
->
scaffoldHandler
=
new
DrupalScaffoldHandler
(
$composer
,
$io
);
if
(
class_exists
(
DrupalScaffoldHandler
::
class
))
{
$this
->
scaffoldHandler
=
new
DrupalScaffoldHandler
(
$composer
,
$io
);
}
$extra
=
$composer
->
getPackage
()
->
getExtra
();
$extra
=
$composer
->
getPackage
()
->
getExtra
();
if
(
isset
(
$extra
[
'lakedrops-config-file'
])
||
isset
(
$extra
[
'lakedrops-curated-file'
]))
{
if
(
isset
(
$extra
[
'lakedrops-config-file'
])
||
isset
(
$extra
[
'lakedrops-curated-file'
]))
{
$config
=
$composer
->
getConfig
()
->
all
()[
'config'
]
??
[];
if
(
isset
(
$extra
[
'lakedrops-config-file'
]))
{
if
(
isset
(
$extra
[
'lakedrops-config-file'
]))
{
$defaultConfig
=
$this
->
readJson
(
'config'
,
$extra
[
'lakedrops-config-file'
],
$io
);
foreach
(
$this
->
readJson
(
'config'
,
$extra
[
'lakedrops-config-file'
],
$io
)
as
$key
=>
$value
)
{
$config
=
NestedArray
::
mergeDeep
(
$defaultConfig
,
$config
);
$composer
->
getConfig
()
->
getConfigSource
()
->
addConfigSetting
(
$key
,
$value
);
}
}
}
if
(
isset
(
$extra
[
'lakedrops-curated-file'
]))
{
if
(
isset
(
$extra
[
'lakedrops-curated-file'
]))
{
$config
[
'audit'
][
'ignore'
]
=
$this
->
readJson
(
'audit ignore'
,
$extra
[
'lakedrops-curated-file'
],
$io
);
$audit
=
$composer
->
getConfig
()
->
get
(
'audit'
);
$audit
[
'ignore'
]
=
$this
->
readJson
(
'audit ignore'
,
$extra
[
'lakedrops-curated-file'
],
$io
);
$composer
->
getConfig
()
->
getConfigSource
()
->
addConfigSetting
(
'audit'
,
$audit
);
}
}
$composerConfig
=
new
Config
();
$composerConfig
->
merge
([
'config'
=>
$config
]);
$composer
->
setConfig
(
$composerConfig
);
}
}
$extras
=
[
$extras
=
[
...
@@ -120,9 +119,13 @@ class Plugin extends BasePlugin {
...
@@ -120,9 +119,13 @@ class Plugin extends BasePlugin {
*/
*/
protected
function
readJson
(
string
$type
,
string
$filename
,
IOInterface
$io
):
array
{
protected
function
readJson
(
string
$type
,
string
$filename
,
IOInterface
$io
):
array
{
$io
->
write
(
'<info>Gathering '
.
$type
.
' from patch file.</info>'
);
$io
->
write
(
'<info>Gathering '
.
$type
.
' from patch file.</info>'
);
$data
=
file_get_contents
(
$filename
);
try
{
$data
=
json_decode
(
$data
,
TRUE
);
$data
=
json_decode
(
file_get_contents
(
$filename
),
TRUE
,
512
,
JSON_THROW_ON_ERROR
);
$error
=
json_last_error
();
$error
=
json_last_error
();
}
catch
(
\JsonException
)
{
$error
=
JSON_ERROR_SYNTAX
;
}
if
(
$error
!==
0
)
{
if
(
$error
!==
0
)
{
$msg
=
match
(
$error
)
{
$msg
=
match
(
$error
)
{
JSON_ERROR_DEPTH
=>
' - Maximum stack depth exceeded'
,
JSON_ERROR_DEPTH
=>
' - Maximum stack depth exceeded'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment