Skip to content

Commit

Permalink
modernize
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyraul committed Aug 9, 2024
1 parent 586c6e1 commit fc36d01
Show file tree
Hide file tree
Showing 75 changed files with 255 additions and 308 deletions.
5 changes: 0 additions & 5 deletions .codeclimate.yml

This file was deleted.

9 changes: 3 additions & 6 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
.jeeves.yaml export-ignore
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
.php-cs-fixer.php export-ignore
grumphp.yml export-ignore
phpcs.xml export-ignore
psalm.xml export-ignore
.codeclimate.yml export-ignore
phpstan.neon 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: ['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
10 changes: 5 additions & 5 deletions .jeeves.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,14 +177,14 @@ Mygento:
scale: 4
indexes:
MYG_SHIP_POINT_PROVIDER_PROVIDER_UID:
type: 'unique'
columns: ['provider', 'provider_uid']
type: 'unique'
columns: ['provider', 'provider_uid']
MYG_SHIP_POINT_ACTIVE:
columns: ['is_active']
columns: ['is_active']
MYG_SHIP_POINT_COUNTRY:
columns: ['country_id']
columns: ['country_id']
MYG_SHIP_POINT_REGION:
columns: ['region_id']
columns: ['region_id']
CalculateRequest:
gui: false
readonly: true
Expand Down
2 changes: 1 addition & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
$header = <<<EOF
@author Mygento Team
@copyright 2016-2021 Mygento (https://www.mygento.ru)
@copyright 2016-2024 Mygento (https://www.mygento.ru)
@package Mygento_Shipment
EOF;

Expand Down
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Api/Carrier/AbstractCarrierInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Carrier/BaseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Carrier/TrackingInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/CarrierManagerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Client/AbstractClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Client/BaseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Data/CalculateRequestInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Data/CalculateResultInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Data/EstimateTimeInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Data/PointInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Data/PointProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Data/PointSearchResultsInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/DimensionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/PointManagerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/PointRepositoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Service/AutoshipInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Service/BaseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Service/CalculateInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Service/MarkingInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Service/OrderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Api/Service/PointInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Block/Adminhtml/Config/Carrier/TrackStatuses.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Block/Adminhtml/Config/Magento/OrderStatuses.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Block/Adminhtml/Order/DeliveryDatetime.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Block/Adminhtml/Order/Estimate.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Block/Adminhtml/Order/Tab/Delivery.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Controller/Adminhtml/Order/DeliveryDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Controller/Adminhtml/Order/DeliveryTab.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Controller/Adminhtml/Order/DeliveryTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Controller/Adminhtml/Point.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
2 changes: 1 addition & 1 deletion Controller/Adminhtml/Point/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @author Mygento Team
* @copyright 2016-2021 Mygento (https://www.mygento.ru)
* @copyright 2016-2024 Mygento (https://www.mygento.ru)
* @package Mygento_Shipment
*/

Expand Down
Loading

0 comments on commit fc36d01

Please sign in to comment.