Skip to content

Commit

Permalink
Support Symfony 7.2 (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
fre5h authored Nov 29, 2024
1 parent a525e1a commit 543c394
Show file tree
Hide file tree
Showing 95 changed files with 1,230 additions and 839 deletions.
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

0 comments on commit 543c394

Please sign in to comment.