Skip to content

Commit

Permalink
Merge branch 'master' into feature/fix-remote-triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
DmytroKlymanSpryker authored Jan 5, 2024
2 parents 7400af1 + a486667 commit d556e17
Show file tree
Hide file tree
Showing 13 changed files with 275 additions and 5,549 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:
fail-fast: false
matrix:
php-version: [
'7.4',
'8.1',
'8.0',
'8.2',
'8.3'
]
Expand Down Expand Up @@ -45,13 +44,7 @@ jobs:
restore-keys: ${{ runner.os }}-composer-

- name: Composer install
run: |
composer --version
if [[ ${{ matrix.php-version }} == '8.2' || ${{ matrix.php-version }} == '8.3' ]]; then
composer update laminas/laminas-servicemanager laminas/laminas-stdlib laminas/laminas-filter --prefer-stable --optimize-autoloader
else
composer install --prefer-dist --no-interaction --optimize-autoloader
fi
run: composer install --prefer-dist --no-interaction --optimize-autoloader

- name: Check PHP for syntax errors
run: find ./src -path src -prune -o -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )
Expand All @@ -64,14 +57,14 @@ jobs:

- name: Run tests
run: |
if [[ ${{ matrix.php-version }} == '7.4' ]]; then
if [[ ${{ matrix.php-version }} == '8.0' ]]; then
XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml
else
composer test
fi
- name: Code Coverage Report
if: success() && matrix.php-version == '7.4'
if: success() && matrix.php-version == '8.0'
uses: codecov/codecov-action@v1

- name: Composer require spryker-sdk/composer-prefer-lowest package
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ tests/tmp

# resources
data/
composer.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Build Status](https://github.com/spryker-sdk/integrator/workflows/CI/badge.svg?branch=master)](https://github.com/spryker-sdk/integrator/actions?query=workflow%3ACI+branch%3Amaster)
[![codecov](https://codecov.io/gh/spryker-sdk/integrator/branch/master/graph/badge.svg?token=l6Xj26Cqei)](https://codecov.io/gh/spryker-sdk/integrator)
[![Latest Stable Version](https://poser.pugx.org/spryker-sdk/integrator/v/stable.svg)](https://packagist.org/packages/spryker-sdk/integrator)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.4-8892BF.svg)](https://php.net/)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.0-8892BF.svg)](https://php.net/)
[![PHPStan](https://img.shields.io/badge/PHPStan-level%208-brightgreen.svg?style=flat)](https://phpstan.org/)

Auto-migrate applications in regard to new core releases using module manifests.
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@
"description": "Integrator module",
"license": "proprietary",
"require": {
"php": ">=7.4",
"php": ">=8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"composer-plugin-api": "^1.0.0 || ^2.0.0",
"composer-plugin-api": "^2.0.0",
"aws/aws-sdk-php": "^3.257",
"composer/composer": "^2.6.0",
"czproject/git-php": "^4.1",
"guzzlehttp/guzzle": "^7.4",
"nikic/php-parser": "^4.13.0",
"sebastian/diff": "^4.0.0",
"spryker-sdk/utils": "^0.1.2",
"symfony/console": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/process": "^5.4 || ^6.0"
"spryker-sdk/utils": "^0.2.2",
"symfony/console": "^6.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0"
},
"require-dev": {
"ext-zip": "*",
"phpstan/phpstan": "^1.0.0",
"phpunit/phpunit": "^9.5.0",
"spryker-sdk/manifest-test-data-provider": "dev-master",
"spryker/code-sniffer": "0.17.18",
"symfony/filesystem": "^5.4 || ^6.0"
"spryker/code-sniffer": "^0.17.19",
"symfony/filesystem": "^6.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit d556e17

Please sign in to comment.