Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #46 from doctrine/bump-dependencies
Browse files Browse the repository at this point in the history
Bump composer dependencies to support newer doctrine package versions
  • Loading branch information
derrabus authored Jun 11, 2024
2 parents ed5fc0a + d413f70 commit 8799bf8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
name: "PHPUnit"
uses: "doctrine/.github/.github/workflows/[email protected]"
with:
php-versions: '["8.0", "8.1", "8.2"]'
php-versions: '["8.0", "8.1", "8.2", "8.3"]'
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
],
"require": {
"php": "^8.0",
"doctrine/collections": "^1.8",
"doctrine/instantiator": "^1.5",
"doctrine/collections": "^1.8|^2.2",
"doctrine/instantiator": "^1.5|^2.0",
"doctrine/persistence": "^3.1"
},
"require-dev": {
"doctrine/coding-standard": "~11.1.0",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "~9.5"
"doctrine/coding-standard": "^12.0",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "~9.6"
},
"config": {
"sort-packages": true,
Expand Down
6 changes: 3 additions & 3 deletions lib/Doctrine/SkeletonMapper/Mapping/ClassMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function getName(): string
*
* The returned structure is an array of the identifier field names.
*
* {@inheritdoc}
* {@inheritDoc}
*/
public function getIdentifier(): array
{
Expand Down Expand Up @@ -132,7 +132,7 @@ public function hasField(string $fieldName): bool
*
* This array includes identifier fields if present on this class.
*
* {@inheritdoc}
* {@inheritDoc}
*/
public function getFieldNames(): array
{
Expand Down Expand Up @@ -292,7 +292,7 @@ public function setLifecycleCallbacks(array $callbacks): void
/**
* Returns an array of identifier field names numerically indexed.
*
* {@inheritdoc}
* {@inheritDoc}
*/
public function getIdentifierFieldNames(): array
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function setClassName(string $className): void
/**
* Finds an object by its primary key / identifier.
*
* {@inheritdoc}
* {@inheritDoc}
*
* @psalm-return T|null
*/
Expand Down

0 comments on commit 8799bf8

Please sign in to comment.