Skip to content

Commit e9264b5

Browse files
authored
Support for Symfony 8.0 (#250)
1 parent 7205b33 commit e9264b5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+621
-302
lines changed

.gitattributes

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# Files and directories which won't be included in .zip archive during running `composer install --prefer-dist`
22

3-
/.github export-ignore
4-
/.gitattributes export-ignore
5-
/.gitignore export-ignore
6-
/.scrutinizer.yml export-ignore
7-
/.styleci.yml export-ignore
8-
/phpstan.neon export-ignore
9-
/phpunit.xml.dist export-ignore
10-
/Tests export-ignore
11-
/Resources/docs export-ignore
3+
/.idea export-ignore
4+
/.github export-ignore
5+
/.gitattributes export-ignore
6+
/.gitignore export-ignore
7+
/.scrutinizer.yml export-ignore
8+
/.styleci.yml export-ignore
9+
/docker-compose.yml export-ignore
10+
/Dockerfile export-ignore
11+
/phpstan.neon export-ignore
12+
/phpunit.xml.dist export-ignore
13+
/Tests export-ignore
14+
/Resources/docs export-ignore

.github/workflows/ci.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,10 @@ jobs:
102102
fail-fast: false
103103
matrix:
104104
php-version:
105-
- '8.2'
106-
- '8.3'
107105
- '8.4'
108106
symfony-version:
109-
- '6.4'
110-
- '7.0'
111-
- '7.1'
112-
- '7.2'
113-
- '7.3'
107+
- '7.4'
108+
- '8.0'
114109
steps:
115110
- name: 'Checkout Code'
116111
uses: actions/checkout@v4

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/vendor/
22
.phpunit.result.cache
33
composer.lock
4+
.phpcs-cache
5+
.php-cs-fixer.cache
6+
clover-coverage.xml
47

58
###> PhpStrom Shared Project Settings ###
69
.idea/*

.idea/php-test-framework.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 93 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Composer_install.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Composer_update.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Run_CI_Pack.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Run_docker_composer.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Run_unit_tests.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)