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
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: '8.4'
extensions: gd, intl, pdo_mysql, iconv
coverage: none # disable xdebug, pcov

Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Copy and install Addons
run: |
rsync -av --exclude='.github' --exclude='.git' --exclude='redaxo_cms' './' 'redaxo_cms/redaxo/src/addons/${{ github.event.repository.name }}'
redaxo_cms/redaxo/bin/console install:download 'rexstan' '1.*'
redaxo_cms/redaxo/bin/console install:download 'rexstan' '2.*'
redaxo_cms/redaxo/bin/console package:install 'rexstan'
redaxo_cms/redaxo/bin/console package:install '${{ github.event.repository.name }}'
# execute rexstan.php to create the needed user-config.neon
Expand All @@ -121,4 +121,4 @@ jobs:
# run rexstan
- id: rexstan
name: Run rexstan
run: redaxo_cms/redaxo/bin/console rexstan:analyze
run: redaxo_cms/redaxo/bin/console rexstan:analyze -v
15 changes: 13 additions & 2 deletions .tools/rexstan.neon
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
parameters:
bootstrapFiles:
- ../vendor/deployer/deployer/src/functions.php
bootstrapFiles:
- ../vendor/deployer/deployer/src/functions.php

ignoreErrors:
-
message: '#internal class rex_(api_)?ydeploy#'
identifiers:
- class.extendsInternalClass
- method.internalClass
- new.internalClass
- parameter.internalClass
- property.internalClass
- staticMethod.internalClass
2 changes: 1 addition & 1 deletion .tools/rexstan.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@
* @param array $extensions the extensions to use
* @param int $phpVersion the php version to use
*/
\rexstan\RexStanUserConfig::save(5, $addon, $extensions, 80203);
\rexstan\RexStanUserConfig::save(5, $addon, $extensions, 80407);
2 changes: 1 addition & 1 deletion deploy.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
throw new RuntimeException('YDeploy 2.x requires Deployer 7.x, but Deployer ' . $version . ' is used');
}

require 'recipe/common.php';
require 'recipe/common.php'; /** @phpstan-ignore require.fileNotFound */

require __DIR__ . '/deployer/config.php';
require __DIR__ . '/deployer/functions.php';
Expand Down