Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Symfony 7.2 #43

Merged
merged 7 commits into from
Nov 29, 2024
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
23 changes: 13 additions & 10 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# Files and directories which won't be included in .zip archive during running `composer install --prefer-dist`

/.github export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.scrutinizer.yml export-ignore
/.styleci.yml export-ignore
/phpstan.neon export-ignore
/phpunit.xml.dist export-ignore
/Tests export-ignore
/Resources/images export-ignore
/Resources/docs export-ignore
/.idea export-ignore
/.github export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.scrutinizer.yml export-ignore
/.styleci.yml export-ignore
/docker-compose.yml export-ignore
/Dockerfile export-ignore
/phpstan.neon export-ignore
/phpunit.xml.dist export-ignore
/Tests export-ignore
/Resources/images export-ignore
/Resources/docs export-ignore
12 changes: 7 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4
ini-values: memory_limit=-1
coverage: none
tools: composer:v2
Expand All @@ -37,7 +37,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4
ini-values: memory_limit=-1
coverage: none
tools: composer:v2
Expand All @@ -58,7 +58,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4
ini-values: memory_limit=-1
coverage: none
tools: composer:v2
Expand All @@ -83,7 +83,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4
ini-values: memory_limit=-1
coverage: none
tools: composer:v2
Expand All @@ -104,9 +104,11 @@ jobs:
matrix:
php-version:
- '8.3'
- '8.4'
symfony-version:
- '7.0'
- '7.1'
- '7.2'
steps:
- name: 'Checkout Code'
uses: actions/checkout@v4
Expand Down Expand Up @@ -141,7 +143,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4
ini-values: memory_limit=-1
coverage: pcov
tools: composer:v2
Expand Down
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/vendor/
.phpunit.result.cache
composer.lock
.phpcs-cache
.php-cs-fixer.cache
clover-coverage.xml

###> PhpStrom Shared Project Settings ###
.idea/*
!.idea/CentrifugoBundle.iml
!.idea/icon.svg
!.idea/inspectionProfiles
!.idea/modules.xml
!.idea/php-test-framework.xml
!.idea/php.xml
!.idea/phpunit.xml
!.idea/runConfigurations
###< PhpStrom Shared Project Settings ###
15 changes: 15 additions & 0 deletions .idea/CentrifugoBundle.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

156 changes: 156 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/php-test-framework.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading