Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Drupal Spoons deprecated
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Composer
plugin
Drupal Spoons deprecated
Commits
8534ffdf
Commit
8534ffdf
authored
4 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
Improve settings merge
parent
c56ed6aa
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Handler.php
+78
-70
78 additions, 70 deletions
src/Handler.php
src/NestedArray.php
+52
-0
52 additions, 0 deletions
src/NestedArray.php
with
130 additions
and
70 deletions
src/Handler.php
+
78
−
70
View file @
8534ffdf
...
...
@@ -46,19 +46,17 @@ class Handler {
*/
public
function
configureComposerJson
()
{
$fs
=
new
Filesystem
();
$options
=
$this
->
getOptions
();
$projectRoot
=
getcwd
();
// Append DrupalSpoon related components to composer.json.
$content
=
[]
;
$content
=
$this
->
defaultSettings
()
;
foreach
([
'composer.disabled.json'
,
'composer.json'
]
as
$file
)
{
$jsonFile
=
new
JsonFile
(
$projectRoot
.
'/'
.
$file
);
if
(
$jsonFile
->
exists
())
{
$content
=
a
rray
_
merge
_recursive
(
$content
,
$jsonFile
->
read
());
$content
=
NestedA
rray
::
merge
Deep
(
$content
,
$jsonFile
->
read
());
$fs
->
remove
(
$projectRoot
.
'/'
.
$file
);
}
}
$content
=
array_merge_recursive
(
$content
,
$options
);
$jsonFile
=
new
JsonFile
(
$projectRoot
.
'/composer.json'
);
$jsonFile
->
write
(
$content
);
...
...
@@ -98,80 +96,90 @@ class Handler {
}
/**
*
R
et
rieve configuration for this package
.
*
G
et
default settings for DrupalSpoons
.
*
* @return array
* The settings
from the extra configuration
.
* The
default
settings.
*/
protected
function
getOptions
():
array
{
$extra
=
$this
->
composer
->
getPackage
()
->
getExtra
()
+
[
'drupalspoons'
=>
[]];
return
$extra
[
'drupalspoons'
]
+
[
'repositories'
=>
[
[
'type'
=>
'composer'
,
'url'
=>
'https://packages.drupal.org/8'
,
],
],
'require-dev'
=>
[
'lakedrops/drupal-spoons'
=>
'dev-master'
,
'composer/installers'
=>
'^1'
,
'drupal/core-composer-scaffold'
=>
'^8.8'
,
'cweagans/composer-patches'
=>
'~1.0'
,
'drupal/core-recommended'
=>
'^8.8'
,
'drupal/core-dev'
=>
'^8.8'
,
'drush/drush'
=>
'^10'
,
'mglaman/phpstan-drupal'
=>
'^0.12'
,
'phpstan/phpstan-deprecation-rules'
=>
'^0.12'
,
'php-parallel-lint/php-parallel-lint'
=>
'^1.2'
,
'zaporylie/composer-drupal-optimizations'
=>
'^1.0'
,
],
'scripts'
=>
[
'si'
=>
'drush si -v --db-url=${SIMPLETEST_DB:-mysql://root:password@mariadb/db}'
,
'phpcs'
=>
'phpcs --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 1 web/modules/custom'
,
'lint'
=>
'parallel-lint --exclude web --exclude vendor .'
,
'webserver'
=>
'cd web && php -S 0.0.0.0:8888 .ht.router.php'
,
'chromedriver'
=>
'chromedriver --port=9515 --verbose --whitelisted-ips --log-path=/tmp/chromedriver.log --no-sandbox'
,
'unit'
=>
'phpunit --verbose web/modules/custom'
,
'phpstan'
=>
'phpstan analyse web/modules/custom'
,
'stylelint'
=>
'yarn --silent --cwd web/core stylelint --formatter verbose --config ./.stylelintrc.json ../modules/custom/**/*.css'
,
'eslint'
=>
'yarn --silent --cwd web/core eslint -c ./.eslintrc.json ../modules/custom'
,
protected
function
defaultSettings
():
array
{
return
[
'name'
=>
''
,
'type'
=>
''
,
'description'
=>
''
,
'keywords'
=>
[],
'license'
=>
'GPL-2.0+'
,
'homepage'
=>
''
,
'authors'
=>
[],
'minimum-stability'
=>
'dev'
,
'support'
=>
[],
'repositories'
=>
[
[
'type'
=>
'composer'
,
'url'
=>
'https://packages.drupal.org/8'
,
],
'config'
=>
[
'process-timeout'
=>
36000
,
],
'extra'
=>
[
'installer-paths'
=>
[
'web/core'
=>
[
0
=>
'type:drupal-core'
,
],
'web/libraries/{$name}'
=>
[
0
=>
'type:drupal-library'
,
],
'web/modules/contrib/{$name}'
=>
[
0
=>
'type:drupal-module'
,
],
'web/profiles/{$name}'
=>
[
0
=>
'type:drupal-profile'
,
],
'web/themes/{$name}'
=>
[
0
=>
'type:drupal-theme'
,
],
'drush/{$name}'
=>
[
0
=>
'type:drupal-drush'
,
],
],
'require'
=>
[],
'suggest'
=>
[],
'require-dev'
=>
[
'lakedrops/drupal-spoons'
=>
'dev-master'
,
'composer/installers'
=>
'^1'
,
'drupal/core-composer-scaffold'
=>
'^8.8'
,
'cweagans/composer-patches'
=>
'~1.0'
,
'drupal/core-recommended'
=>
'^8.8'
,
'drupal/core-dev'
=>
'^8.8'
,
'drush/drush'
=>
'^10'
,
'mglaman/phpstan-drupal'
=>
'^0.12'
,
'phpstan/phpstan-deprecation-rules'
=>
'^0.12'
,
'php-parallel-lint/php-parallel-lint'
=>
'^1.2'
,
'zaporylie/composer-drupal-optimizations'
=>
'^1.0'
,
],
'scripts'
=>
[
'si'
=>
'drush si -v --db-url=${SIMPLETEST_DB:-mysql://root:password@mariadb/db}'
,
'phpcs'
=>
'phpcs --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 1 web/modules/custom'
,
'lint'
=>
'parallel-lint --exclude web --exclude vendor .'
,
'webserver'
=>
'cd web && php -S 0.0.0.0:8888 .ht.router.php'
,
'chromedriver'
=>
'chromedriver --port=9515 --verbose --whitelisted-ips --log-path=/tmp/chromedriver.log --no-sandbox'
,
'unit'
=>
'phpunit --verbose web/modules/custom'
,
'phpstan'
=>
'phpstan analyse web/modules/custom'
,
'stylelint'
=>
'yarn --silent --cwd web/core stylelint --formatter verbose --config ./.stylelintrc.json ../modules/custom/**/*.css'
,
'eslint'
=>
'yarn --silent --cwd web/core eslint -c ./.eslintrc.json ../modules/custom'
,
],
'config'
=>
[
'process-timeout'
=>
36000
,
],
'extra'
=>
[
'installer-paths'
=>
[
'web/core'
=>
[
0
=>
'type:drupal-core'
,
],
'web/libraries/{$name}'
=>
[
0
=>
'type:drupal-library'
,
],
'web/modules/contrib/{$name}'
=>
[
0
=>
'type:drupal-module'
,
],
'drupal-scaffold'
=>
[
'locations'
=>
[
'web-root'
=>
'web/'
,
],
'web/profiles/{$name}'
=>
[
0
=>
'type:drupal-profile'
,
],
'drush'
=>
[
'services'
=>
[
'drush.services.yml'
=>
'^9 || ^10'
,
],
'web/themes/{$name}'
=>
[
0
=>
'type:drupal-theme'
,
],
'drush/{$name}'
=>
[
0
=>
'type:drupal-drush'
,
],
],
'drupal-scaffold'
=>
[
'locations'
=>
[
'web-root'
=>
'web/'
,
],
],
'drush'
=>
[
'services'
=>
[
'drush.services.yml'
=>
'^9 || ^10'
,
],
],
];
],
];
}
}
This diff is collapsed.
Click to expand it.
src/NestedArray.php
0 → 100644
+
52
−
0
View file @
8534ffdf
<?php
namespace
LakeDrops\DrupalSpoons
;
/**
* Class NestedArray.
*
* @package LakeDrops\DrupalSpoons
*/
class
NestedArray
{
/**
* Deeply merges arrays. Borrowed from drupal.org/project/core.
*
* @return array
* The merged array.
*/
public
static
function
mergeDeep
():
array
{
return
self
::
mergeDeepArray
(
func_get_args
());
}
/**
* Deeply merges arrays. Borrowed from drupal.org/project/core.
*
* @param array $arrays
* An array of array that will be merged.
* @param bool $preserve_integer_keys
* Whether to preserve integer keys.
*
* @return array
* The merged array.
*/
public
static
function
mergeDeepArray
(
array
$arrays
,
$preserve_integer_keys
=
FALSE
):
array
{
$result
=
[];
foreach
(
$arrays
as
$array
)
{
foreach
(
$array
as
$key
=>
$value
)
{
if
(
is_int
(
$key
)
&&
!
$preserve_integer_keys
)
{
$result
[]
=
$value
;
}
/** @noinspection NotOptimalIfConditionsInspection */
elseif
(
isset
(
$result
[
$key
])
&&
is_array
(
$result
[
$key
])
&&
is_array
(
$value
))
{
$result
[
$key
]
=
self
::
mergeDeepArray
([
$result
[
$key
],
$value
],
$preserve_integer_keys
);
}
else
{
$result
[
$key
]
=
$value
;
}
}
}
return
$result
;
}
}
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