Skip to content

Commit 106b9b5

Browse files
committed
ci(git): Copy generic CI/CD files
1 parent c902812 commit 106b9b5

4 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/static-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,6 @@ jobs:
5858
test -f /tmp/magento/phpstan.neon || echo 'parameters:' > /tmp/magento/phpstan.neon
5959
echo "Testing for PHPStan level $PHPSTAN_LEVEL"
6060
cd /tmp/magento
61-
php -d memory_limit=4G vendor/bin/phpstan analyse --level $PHPSTAN_LEVEL ${GITHUB_WORKSPACE}
61+
export MODULE_PATH=$(realpath vendor/${COMPOSER_NAME})
62+
php -d memory_limit=4G vendor/bin/phpstan analyse --level $PHPSTAN_LEVEL $MODULE_PATH
6263

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.0.2] - 12 February 2026
10+
### Fixed
11+
- Allow PHP Config to read from current store level
12+
913
## [1.0.1] - 20 January 2026
1014
### Fixed
1115
- Add new GitHub Action workflows

MODULE.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@
1515
"components": [],
1616
"config": [
1717
{
18-
"path": "loki_components/validators/enable_mx_validation_for_email",
18+
"path": "loki_components\/validators\/enable_mx_validation_for_email",
1919
"label": "Validators > Enable MX Validation for Email Values",
20-
"description": "When a specific Loki Component is declared in a file `etc/loki_components.xml` with a validator `email`, then basic email validation is applied. With this setting enabled, the validation includes also a DNS MX lookup of the domain part of the email."
20+
"description": "When a specific Loki Component is declared in a file `etc\/loki_components.xml` with a validator `email`, then basic email validation is applied. With this setting enabled, the validation includes also a DNS MX lookup of the domain part of the email."
2121
}
2222
],
2323
"tests": {
2424
"unit": 0,
2525
"integration": 4,
2626
"functional": 0
27-
},
28-
"phpstan_level": "5"
27+
}
2928
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "loki/magento2-email-mx-validator",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Add-on to Loki Components to allow the MX record of an email to be validated",
55
"type": "magento2-module",
66
"keywords": [

0 commit comments

Comments
 (0)