Skip to content

Commit

Permalink
modernize
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyraul committed Oct 22, 2024
1 parent a2fe8c3 commit 8791283
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 19 deletions.
5 changes: 0 additions & 5 deletions .codeclimate.yml

This file was deleted.

7 changes: 3 additions & 4 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ phpunit.xml.dist export-ignore
phpunit.xml export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
.shippable.yml export-ignore
.scrutinizer.yml export-ignore
README.md export-ignore
version.xml export-ignore
magento.rb export-ignore
.php_cs export-ignore
grumphp.yml export-ignore
phpcs.xml export-ignore
psalm.xml export-ignore
.codeclimate.yml export-ignore
phpstan.neon export-ignore
.php-cs-fixer.php export-ignore
.github export-ignore
7 changes: 4 additions & 3 deletions .github/workflows/grumphp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ['7.4', '8.1']
php-versions: ['7.4', '8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
Expand All @@ -27,7 +28,7 @@ jobs:
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
Expand Down
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
{
"name": "mygento/module-payment",
"type": "magento2-module",
"version": "2.4.0",
"license": "OSL-3.0",
"homepage": "https://github.com/mygento/module-payment",
"description": "Mygento Payment Base",
"authors": [{
"name": "Nikita Tarasov",
"email": "nikita@mygento.net",
"homepage": "http://www.mygento.net/",
"email": "nikita@mygento.com",
"homepage": "https://www.mygento.com/",
"role": "Developer"
},
{
"name": "Mygento",
"email": "connect@mygento.net",
"homepage": "https://www.mygento.ru/"
"email": "connect@mygento.com",
"homepage": "https://www.mygento.com/"
}
],
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion view/adminhtml/templates/form/form.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ $instructions = $block->getInstructions();
?>" style="display: none;">
<?php // @noEscape
echo nl2br($block->escapeHtml($instructions))
?>
?>
</div>
<?php endif;
2 changes: 1 addition & 1 deletion view/frontend/templates/form/form.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ $instructions = $block->getInstructions();
?>" style="display: none;">
<?php // @noEscape
echo nl2br($block->escapeHtml($instructions))
?>
?>
</div>
<?php endif;

0 comments on commit 8791283

Please sign in to comment.