Skip to content

Commit c582f43

Browse files
committed
Merge branch '3.2.x' into 3.3.x
* 3.2.x: Remove unnecessary empty line (#439) Test on PHP 8.2 and 8.3 (#515) Bump workflows (#514) Add static analysis files to .gitattributes
2 parents d2e844b + 90be439 commit c582f43

File tree

8 files changed

+10
-12
lines changed

8 files changed

+10
-12
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,7 @@
77
.gitignore export-ignore
88
phpcs.xml.dist export-ignore
99
phpstan.neon export-ignore
10+
phpstan.neon.dist export-ignore
1011
phpunit.xml.dist export-ignore
12+
psalm.xml export-ignore
13+
psalm-baseline.xml export-ignore

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,4 @@ on:
1212
jobs:
1313
coding-standards:
1414
name: "Coding Standards"
15-
uses: "doctrine/.github/.github/workflows/[email protected]"
16-
with:
17-
php-version: "8.1"
15+
uses: "doctrine/.github/.github/workflows/[email protected]"

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ on:
1212
jobs:
1313
phpunit:
1414
name: "PHPUnit"
15-
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@1.4.1"
15+
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@3.1.0"
1616
with:
17-
php-versions: '["7.2", "7.3", "7.4", "8.0", "8.1", "8.2"]'
17+
php-versions: '["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]'

.github/workflows/release-on-milestone-closed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
release:
1010
name: "Git tag, release & create merge-up PR"
11-
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@1.4.1"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@3.1.0"
1212
secrets:
1313
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1414
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,4 @@ on:
1212
jobs:
1313
static-analysis:
1414
name: "Static Analysis"
15-
uses: "doctrine/.github/.github/workflows/[email protected]"
16-
with:
17-
php-version: "8.1"
15+
uses: "doctrine/.github/.github/workflows/[email protected]"

Resources/doc/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ application:
4141
4242
# config/packages/doctrine_migrations.yaml
4343
44-
4544
doctrine_migrations:
4645
# List of namespace/path pairs to search for migrations, at least one required
4746
migrations_paths:

phpstan.neon.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
parameters:
22
level: 7
3-
phpVersion: 80100
3+
phpVersion: 80200
44
paths:
55
- %currentWorkingDirectory%/DependencyInjection
66
- %currentWorkingDirectory%/Tests

psalm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<psalm
33
errorLevel="4"
4-
phpVersion="8.1"
4+
phpVersion="8.2"
55
resolveFromConfigFile="true"
66
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
77
xmlns="https://getpsalm.org/schema/config"

0 commit comments

Comments
 (0)