Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,12 +274,30 @@ jobs:
php-version: "8.2"

- name: Install Dependencies
run: |
composer install
run: composer install

- name: Composer audit
run: |
composer audit
run: composer audit

composer-prefer-lowest:
runs-on: ubuntu-24.04
name: "Smoke test with lowest dependencies"
if: inputs.nightly == 'true'
steps:
- name: Setup Shopware
uses: shopware/setup-shopware@main
with:
shopware-version: ${{ github.ref }}
shopware-repository: ${{ github.repository }}

- name: Install lowest dependencies
run: composer update --prefer-lowest

- name: Generate Schema
run: composer run framework:schema:dump

- name: Run PHPStan as smoke test
run: composer phpstan

php-check:
if: always()
Expand Down
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@
"branch-alias": {
"dev-master": "6.7.x-dev",
"dev-trunk": "6.7.x-dev"
},
"phpstan/extension-installer": {
"ignore": [
"composer/pcre"
]
}
},
"config": {
Expand Down Expand Up @@ -92,7 +97,7 @@
"horstoeko/zugferd": "^1.0.104",
"lcobucci/clock": "^3.1.0",
"lcobucci/jwt": "^5.5",
"league/flysystem": "^3.10.3",
"league/flysystem": "^3.13.0",
"league/flysystem-local": "^3.29.0",
"league/flysystem-memory": "^3.10.3",
"league/mime-type-detection": "^1.13.0",
Expand All @@ -114,7 +119,7 @@
"setasign/tfpdf": "^1.33",
"shopware/conflicts": "0.6.0",
"shyim/opensearch-php-dsl": "^1.0.5",
"squirrelphp/twig-php-syntax": "^1.8.0",
"squirrelphp/twig-php-syntax": "^1.13.0",
"symfony/asset": "~7.3.0",
"symfony/cache": "~7.3.0",
"symfony/cache-contracts": "~3.6.0",
Expand Down Expand Up @@ -194,7 +199,7 @@
"phpstan/phpstan-phpunit": "2.0.6",
"phpstan/phpstan-strict-rules": "2.0.4",
"phpstan/phpstan-symfony": "2.0.6",
"phpunit/phpunit": "^11.5.17",
"phpunit/phpunit": "^11.5.19",
"predis/predis": "^2.2",
"rector/type-perfect": "2.1.0",
"shopware/dev-tools": "^1.3",
Expand Down
6 changes: 3 additions & 3 deletions src/Core/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"horstoeko/zugferd": "^1.0.104",
"lcobucci/clock": "^3.1.0",
"lcobucci/jwt": "^5.5",
"league/flysystem": "^3.10.3",
"league/flysystem": "^3.13.0",
"league/flysystem-local": "^3.29.0",
"league/flysystem-memory": "^3.10.3",
"league/mime-type-detection": "^1.13.0",
Expand All @@ -96,7 +96,7 @@
"setasign/fpdi": "^2.3.7",
"setasign/tfpdf": "^1.33",
"shopware/conflicts": "0.6.0",
"squirrelphp/twig-php-syntax": "^1.8.0",
"squirrelphp/twig-php-syntax": "^1.13.0",
"symfony/asset": "~7.3.0",
"symfony/cache": "~7.3.0",
"symfony/cache-contracts": "~3.6.0",
Expand Down Expand Up @@ -162,7 +162,7 @@
"league/flysystem-google-cloud-storage": "^3.10.3",
"nikic/php-parser": "^5.4.0",
"opis/json-schema": "^2.3.0",
"phpunit/phpunit": "^11.5.17",
"phpunit/phpunit": "^11.5.19",
"smalot/pdfparser": "^2.2.2",
"symfony/browser-kit": "~7.3.0",
"symfony/phpunit-bridge": "~7.3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Elasticsearch/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
"symfony/messenger": "~7.3.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5.17"
"phpunit/phpunit": "^11.5.19"
}
}
2 changes: 1 addition & 1 deletion src/Storefront/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
},
"require-dev": {
"symfony/css-selector": "~7.3.0",
"phpunit/phpunit": "^11.5.17"
"phpunit/phpunit": "^11.5.19"
}
}