Skip to content

Commit 89814b0

Browse files
committed
chore(release): 1.2.0
1 parent f150219 commit 89814b0

6 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
php: [ '8.2', '8.3', '8.4', '8.5' ]
10+
php: [ '8.4', '8.5' ]
1111

1212
steps:
1313
- name: Checkout

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
php: [ '8.2', '8.3', '8.4', '8.5' ]
10+
php: [ '8.4', '8.5' ]
1111

1212
steps:
1313
- name: Checkout

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"phpstan/phpstan-phpunit": "^2.0"
3636
},
3737
"require": {
38-
"php": ">=8.2",
38+
"php": ">=8.4",
3939
"symfony/http-client": "^7.0|^8.0",
4040
"symfony/serializer": "^7.0|^8.0",
4141
"symfony/property-access": "^7.0|^8.0",

composer.lock

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

rector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
__DIR__ . '/src',
1010
__DIR__ . '/tests',
1111
])
12-
->withPhpSets(php82: true)
12+
->withPhpSets(php84: true)
1313
->withImportNames(removeUnusedImports: true)
1414
->withPreparedSets(deadCode: true, codeQuality: true, codingStyle: true, typeDeclarations: true, typeDeclarationDocblocks: true, symfonyCodeQuality: true, symfonyConfigs: true);

src/Parameter/PopularVideosParameters.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
namespace Devscast\Pexels\Parameter;
66

77
use Devscast\Pexels\Mapper;
8+
use Override;
89
use Webmozart\Assert\Assert;
910

1011
/**
@@ -54,6 +55,7 @@ public function __construct(
5455
$this->max_duration = $max_duration;
5556
}
5657

58+
#[Override]
5759
public function toArray(): array
5860
{
5961
return array_filter(Mapper::toArray([], $this), fn ($p): bool => $p !== null);

0 commit comments

Comments
 (0)