Skip to content

Commit 5a36615

Browse files
authored
Merge branch 'main' into patch-17
2 parents ff818db + 2a4ebc4 commit 5a36615

File tree

6,230 files changed

+58373
-47325
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,230 files changed

+58373
-47325
lines changed

.all-contributorsrc

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
"files": [
77
"README.md"
88
],
9-
"imageSize": 100,
9+
"imageSize": 35,
1010
"commit": true,
1111
"commitConvention": "none",
12+
"contributorsPerLine": 20
1213
"contributorTemplate": "<a href=\"<%= contributor.profile %>\"><img src=\"<%= contributor.avatar_url %>\" loading=\"lazy\" width=\"<%= options.imageSize %>\" alt=\"\"/><br /><sub><b><%= contributor.name %></b></sub></a>",
1314
"badgeTemplate": "<a href=\"#contributors-\"><img src=\"https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg\" alt=\"All Contributors\"></a>",
15+
"wrapperTemplate": "\n<table>\n <tbody><%= bodyContent %> </tbody>\n<%= tableFooterContent %></table>\n\n",
1416
"contributors": [
1517
{
1618
"login": "sreichel",

.ddev/commands/web/openmage-install

+10-6
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ while :; do
4343
echo "Enable maintenance mode..."
4444
touch maintenance.flag
4545

46-
LOCALXML="${ROOT}/app/etc/local.xml"
46+
LOCALXML="${ROOT}"/"${DDEV_DOCROOT}/app/etc/local.xml"
4747
if [ -f "${LOCALXML}" ]; then
4848
if [[ "${QUIET_INSTALL_FLAG}" ]]; then
4949
DELETE='y'
@@ -88,21 +88,25 @@ if [[ $INSTALL_SAMPLE_DATA =~ ^(yes|y) ]]; then
8888
tar xf "${SAMPLE_DATA_FILE}"
8989

9090
echo "Copying Sample Data into the OpenMage directory..."
91-
cp -r magento-sample-data-1.9.2.4/media/* "${ROOT}/media/"
92-
cp -r magento-sample-data-1.9.2.4/skin/* "${ROOT}/skin/"
91+
cd "${ROOT}" || exit
92+
cp -r "${SAMPLE_DATA_DIRECTORY}"/magento-sample-data-1.9.2.4/media/* "${ROOT}"/"${DDEV_DOCROOT}/media/"
93+
cp -r "${SAMPLE_DATA_DIRECTORY}"/magento-sample-data-1.9.2.4/skin/* "${ROOT}"/"${DDEV_DOCROOT}/skin/"
9394

9495
echo "Clearing var/cache..."
95-
rm -rf "${ROOT}/var/cache/"*
96+
rm -rf "${ROOT}"/"${DDEV_DOCROOT}/var/cache/"*
9697

9798
echo "Importing Sample Data into the database..."
98-
mysql -u db -h db db < "${SAMPLE_DATA_DIRECTORY}/magento-sample-data-1.9.2.4/magento_sample_data_for_1.9.2.4.sql"
99+
mysql -u db -h db db < "${SAMPLE_DATA_DIRECTORY}"/magento-sample-data-1.9.2.4/magento_sample_data_for_1.9.2.4.sql
99100

100101
# remove sample data
101102
if [[ "${SAMPLE_DATA_KEEP_FLAG}" ]]; then
102103
# shellcheck disable=SC2046
104+
cd "${ROOT}" || exit
105+
echo "Removing uncompressed files..."
103106
rm -rf magento-sample-data-1.9.2.4/
104107
else
105108
cd "${ROOT}" || exit
109+
echo "Removing sample data..."
106110
rm -rf "${SAMPLE_DATA_DIRECTORY}"
107111
fi
108112
fi
@@ -138,7 +142,7 @@ else
138142
fi
139143
fi
140144

141-
php -f install.php -- \
145+
php -f "${ROOT}"/"${DDEV_DOCROOT}/"install.php -- \
142146
--license_agreement_accepted 'yes' \
143147
--locale 'en_US' \
144148
--timezone 'America/New_York' \

.ddev/commands/web/phpcs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
## Usage: phpcs
55
## Example: ddev phpcs <path-to-files>
66

7-
php vendor/bin/phpcs -s -p --report=full,summary "$@"
7+
php vendor/bin/phpcs -s -p --standard=.phpcs.dist.xml --cache=.phpcs.result.cache --report=full,summary "$@"

.ddev/commands/web/phpmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
## Usage: phpmd
55
## Example: ddev phpmd <path-to-files>
66

7-
php vendor/bin/phpmd "$@" text .phpmd.dist.xml
7+
php vendor/bin/phpmd "$@" text .phpmd.dist.xml --color --cache --baseline-file .phpmd.dist.baseline.xml

.ddev/commands/web/phpmd-no-baseline

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
## Description: run PHPMD
4+
## Usage: phpmd-no-baseline
5+
## Example: ddev phpmd-no-baseline <path-to-files>
6+
7+
php vendor/bin/phpmd "$@" text .phpmd.dist.xml

.ddev/commands/web/phpunit

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
## Usage: phpunit
55
## Example: ddev phpunit
66

7-
php vendor/bin/phpunit --no-coverage "$@" --testdox
7+
php vendor/bin/phpunit --configuration .phpunit.dist.xml --no-coverage "$@" --testdox

.ddev/commands/web/phpunit-coverage

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
## Example: ddev phpunit-coverage
66

77
enable_xdebug
8-
XDEBUG_MODE=coverage php vendor/bin/phpunit --testdox
8+
XDEBUG_MODE=coverage php vendor/bin/phpunit --configuration .phpunit.dist.xml --testdox "$@"
99
disable_xdebug

.ddev/commands/web/phpunit-coverage-local

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
## Example: ddev phpunit-coverage-local
66

77
enable_xdebug
8-
XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-html build/coverage --testdox
8+
XDEBUG_MODE=coverage php vendor/bin/phpunit --configuration .phpunit.dist.xml --coverage-html build/coverage --testdox "$@"
99
disable_xdebug

.ddev/commands/web/rector

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
## Usage: rector
55
## Example: ddev rector <path-to-files>
66

7-
php vendor/bin/rector process "$@"
7+
php vendor/bin/rector process --config .rector.php "$@"

.gitattributes

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@
33
/.github export-ignore
44
/dev export-ignore
55
/docs export-ignore
6+
/docs_includes export-ignore
67
/tests export-ignore
78

89
/.all-contributorsrc export-ignore
910
/.gitattributes export-ignore
1011
/.gitignore export-ignore
11-
/.gitpod.yml export-ignore
1212

1313
/.php-cs-fixer.dist.php export-ignore
1414
/.phpcs.ecg.xml.dist export-ignore
1515
/.phpcs.php.xml.dist export-ignore
1616
/.phpcs.xml.dist export-ignore
17+
/.phpmd.dist.baseline.xml export-ignore
1718
/.phpmd.dist.xml export-ignore
1819
/.phpstan.dist.baseline.neon export-ignore
1920
/.phpstan.dist.neon export-ignore
20-
/rector.php export-ignore
21+
/.rector.php export-ignore
22+
23+
/CNAME export-ignore
2124

2225
/README.md export-ignore
2326

@@ -35,4 +38,4 @@
3538
*.sql text eol=lf
3639
*.svg text eol=lf
3740
*.txt text eol=lf
38-
*.phtml text eol=lf
41+
*.phtml text eol=lf

.github/PULL_REQUEST_TEMPLATE.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@
1717

1818
### Related Pull Requests
1919
<!-- related pull request placeholder -->
20+
- see OpenMage/magento-lts#<issue_number>
2021

2122
### Fixed Issues (if relevant)
2223
<!---
2324
If relevant, please provide a list of fixed issues in the format OpenMage/magento-lts#<issue_number>.
2425
There could be 1 or more issues linked here and it will help us find some more information about the reasoning behind this change.
2526
-->
26-
1. Fixes OpenMage/magento-lts#<issue_number>
27+
- fixes OpenMage/magento-lts#<issue_number>
2728

2829
### Manual testing scenarios (*)
2930
<!---
@@ -43,11 +44,3 @@
4344
- [ ] Pull request has a meaningful description of its purpose
4445
- [ ] All commits are accompanied by meaningful commit messages
4546
- [ ] All automated tests passed successfully (all builds are green)
46-
- [ ] Add yourself to contributors list
47-
<!---
48-
Install: `yarn add --dev all-contributors-cli`
49-
Add yourself: `yarn all-contributors add @YOUR_NAME <types>`
50-
This updates `.all-contributorsrc, README.md` and commits this changes automatically
51-
contribution types: code, doc, design
52-
See other contributions type at https://allcontributors.org/docs/en/emoji-key
53-
-->

.github/labeler.yml

+26-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
.github/**/*
66
]
77

8+
'git':
9+
- changed-files:
10+
- any-glob-to-any-file: [
11+
.gitattributes,
12+
.gitignore
13+
]
14+
815
'htaccess':
916
- changed-files:
1017
- any-glob-to-any-file: [
@@ -861,7 +868,15 @@
861868
'Documentation':
862869
- changed-files:
863870
- any-glob-to-any-file: [
864-
'*.md'
871+
docs/*.md,
872+
docs/**/*.md,
873+
docs_includes/*.md
874+
]
875+
876+
'README':
877+
- changed-files:
878+
- any-glob-to-any-file: [
879+
README.md
865880
]
866881

867882
'PHPStorm':
@@ -884,19 +899,26 @@
884899
.github/workflows/php-cs-fixer.yml
885900
]
886901

902+
'phpmd':
903+
- changed-files:
904+
- any-glob-to-any-file: [
905+
.phpmd*,
906+
.github/workflows/phpmd.yml
907+
]
908+
887909
'phpstan':
888910
- changed-files:
889911
- any-glob-to-any-file: [
890912
.phpstan*,
891-
phpstan*,
892913
.github/workflows/phpstan.yml
893914
]
894915

895916
'phpunit':
896917
- changed-files:
897918
- any-glob-to-any-file: [
898-
phpunit*,
919+
.phpunit*,
899920
tests/*,
921+
tests/**/*,
900922
.github/workflows/phpunit.yml
901923
]
902924

@@ -910,6 +932,6 @@
910932
'rector':
911933
- changed-files:
912934
- any-glob-to-any-file: [
913-
rector.php,
935+
.rector.php,
914936
.github/workflows/rector.yml
915937
]

.github/release-drafter.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name-template: 'v$RESOLVED_VERSION 🌈'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
categories:
4+
- title: '🚀 Features'
5+
labels:
6+
- 'enhancement'
7+
- 'new feature'
8+
- title: '🐛 Bug Fixes'
9+
labels:
10+
- 'fix'
11+
- 'bugfix'
12+
- 'bug'
13+
- title: '📖 Documentation'
14+
labels:
15+
- 'Documentation'
16+
- title: '↗️ Dependencies'
17+
labels:
18+
- 'dependencies'
19+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
20+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
21+
version-resolver:
22+
major:
23+
labels:
24+
- 'major'
25+
minor:
26+
labels:
27+
- 'minor'
28+
patch:
29+
labels:
30+
- 'patch'
31+
default: patch
32+
template: |
33+
## Changes
34+
35+
$CHANGES

.github/workflows/check-files.yml

+28-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
php:
1313
description: "Count changed PHP files"
1414
value: ${{ jobs.check.outputs.php }}
15+
phtml:
16+
description: "Count changed Template files"
17+
value: ${{ jobs.check.outputs.phtml }}
1518
xml:
1619
description: "Count changed XML files"
1720
value: ${{ jobs.check.outputs.xml }}
@@ -24,6 +27,9 @@ on:
2427
php-cs-fixer:
2528
description: "Count changed PHP-CS-Fixer files"
2629
value: ${{ jobs.check.outputs.php-cs-fixer }}
30+
phpmd:
31+
description: "Count changed PHPMD files"
32+
value: ${{ jobs.check.outputs.phpmd }}
2733
phpstan:
2834
description: "Count changed PHPStan files"
2935
value: ${{ jobs.check.outputs.phpstan }}
@@ -44,10 +50,12 @@ jobs:
4450
composer: ${{ steps.changes-composer.outputs.composer }}
4551
js: ${{ steps.changes-js.outputs.js }}
4652
php: ${{ steps.changes-php.outputs.php }}
53+
phtml: ${{ steps.all.outputs.phtml }}
4754
xml: ${{ steps.changes-xml.outputs.xml }}
4855
workflow: ${{ steps.changes-workflow.outputs.workflow }}
4956
phpcs: ${{ steps.changes-phpcs.outputs.phpcs }}
5057
php-cs-fixer: ${{ steps.changes-php-cs-fixer.outputs.php-cs-fixer }}
58+
phpmd: ${{ steps.changes-phpstan.outputs.phpmd }}
5159
phpstan: ${{ steps.changes-phpstan.outputs.phpstan }}
5260
phpunit-test: ${{ steps.changes-phpunit-test.outputs.phpunit-test }}
5361
phpunit: ${{ steps.changes-phpunit.outputs.phpunit }}
@@ -77,13 +85,15 @@ jobs:
7785
composer.*
7886
*.php
7987
**/*.php
88+
**/*.phtml
8089
**/*.xml
8190
**/*.js
8291
.github/workflows/**
8392
**phpcs**
8493
**php-cs-fixer**
94+
**phpmd**
8595
**phpstan**
86-
rector.php
96+
.rector.php
8797
tests/
8898
phpunit*
8999
@@ -113,6 +123,14 @@ jobs:
113123
echo "$count PHP file(s) changed"
114124
echo "php=$count" >> $GITHUB_OUTPUT
115125
126+
- name: Check if Template files changed
127+
id: changes-phtml
128+
if: steps.changed-files-specific.outputs.any_modified == 'true'
129+
run: |
130+
count="$(grep -oE "*.phtml" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
131+
echo "$count Template file(s) changed"
132+
echo "phtml=$count" >> $GITHUB_OUTPUT
133+
116134
- name: Check if XML files changed
117135
id: changes-xml
118136
if: steps.changed-files-specific.outputs.any_modified == 'true'
@@ -145,6 +163,14 @@ jobs:
145163
echo "$count PHP-CS-Fixer file(s) changed"
146164
echo "php-cs-fixer=$count" >> $GITHUB_OUTPUT
147165
166+
- name: Check if PHPMD files changed
167+
id: changes-phpmd
168+
if: steps.changed-files-specific.outputs.any_modified == 'true'
169+
run: |
170+
count="$(grep -oE "**phpmd**" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
171+
echo "$count PHPMD file(s) changed"
172+
echo "phpmd=$count" >> $GITHUB_OUTPUT
173+
148174
- name: Check if PHPStan files changed
149175
id: changes-phpstan
150176
if: steps.changed-files-specific.outputs.any_modified == 'true'
@@ -165,6 +191,6 @@ jobs:
165191
id: changes-phpunit
166192
if: steps.changed-files-specific.outputs.any_modified == 'true'
167193
run: |
168-
count="$(grep -oE "phpunit*" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
194+
count="$(grep -oE "**phpunit**" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
169195
echo "$count PHPUnit file(s) changed"
170196
echo "phpunit=$count" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)