-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from itk-dev/feature/3556_dependency_updates_a…
…nd_maintenance Feature/3556 dependency updates and maintenance
- Loading branch information
Showing
24 changed files
with
202 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
on: | ||
push: | ||
tags: | ||
- '*.*.*' | ||
|
||
name: Create Github Release | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
create-release: | ||
runs-on: ubuntu-latest | ||
env: | ||
COMPOSER_ALLOW_SUPERUSER: 1 | ||
APP_ENV: prod | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Create a release in GitHub | ||
run: gh release create ${{ github.ref_name }} --verify-tag --generate-notes | ||
env: | ||
GITHUB_TOKEN: ${{ github.TOKEN }} | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ build | |
var | ||
.phpcs-cache | ||
.php-cs-fixer.cache | ||
.phpunit.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
# itk-version: 1.0.0 | ||
|
||
version: "3" | ||
# itk-version: 3.2.1 | ||
|
||
services: | ||
phpfpm: | ||
image: itkdev/php8.1-fpm:latest | ||
image: itkdev/php8.3-fpm:latest | ||
environment: | ||
- XDEBUG_MODE=${XDEBUG_MODE:-off} | ||
- XDEBUG_SESSION=${XDEBUG_SESSION:-0} | ||
- COMPOSER_VERSION=2 | ||
- PHP_XDEBUG_MODE=${PHP_XDEBUG_MODE:-off} | ||
- PHP_MAX_EXECUTION_TIME=30 | ||
- PHP_MEMORY_LIMIT=256M | ||
# Depending on the setup, you may have to remove --read-envelope-from from msmtp (cf. https://marlam.de/msmtp/msmtp.html) or use SMTP to send mail | ||
- PHP_SENDMAIL_PATH=/usr/bin/msmtp --host=mail --port=1025 --read-recipients --read-envelope-from | ||
- DOCKER_HOST_DOMAIN=${COMPOSE_DOMAIN} | ||
- COMPOSER_VERSION=2 | ||
- PHP_IDE_CONFIG=serverName=localhost | ||
volumes: | ||
- .:/app:delegated | ||
- .:/app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
parameters: | ||
level: 8 | ||
paths: | ||
- src | ||
ignoreErrors: | ||
- | ||
message: '#^Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition\:\:children\(\)\.$#' | ||
identifier: method.notFound | ||
path: src/DependencyInjection/Configuration.php | ||
- | ||
message: '#^Method ItkDev\\OpenIdConnectBundle\\Security\\OpenIdConfigurationProviderManager\:\:__construct\(\) has parameter \$config with no value type specified in iterable type array\.$#' | ||
identifier: missingType.iterableValue | ||
path: src/Security/OpenIdConfigurationProviderManager.php | ||
- | ||
message: '#^Method ItkDev\\OpenIdConnectBundle\\Security\\OpenIdConfigurationProviderManager\:\:getProviderKeys\(\) should return array\<string\> but returns list\<int\|string\>\.$#' | ||
identifier: return.type | ||
path: src/Security/OpenIdConfigurationProviderManager.php | ||
- | ||
message: '#^Method ItkDev\\OpenIdConnectBundle\\Command\\UserLoginCommand\:\:__construct\(\) has parameter \$userProvider with generic interface Symfony\\Component\\Security\\Core\\User\\UserProviderInterface but does not specify its types\: TUser$#' | ||
identifier: missingType.generics | ||
path: src/Command/UserLoginCommand.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.