Skip to content

Commit 1b4db90

Browse files
committed
Update dependencies
1 parent 08886ad commit 1b4db90

36 files changed

+154
-62
lines changed

bin/start.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,5 @@
2222
(new ParallelProcessesApplication())
2323
->addProcess($ciDockerProcess)
2424
->addProcess($ciEnvProcess)
25-
->addProcess(
26-
(new Process([$rootDir . '/bin/parallel-processes/docker']))
27-
->setName('bin/parallel-processes/docker')
28-
)
29-
->addProcess(
30-
(new Process([$rootDir . '/bin/release/docker']))
31-
->setName('bin/release/docker')
32-
)
3325
->setRefreshInterval(50000)
3426
->run(new ArgvInput($argv));

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
- Add compatibility for MAC
88
- Move `ci` and `release` Docker images from hub.docker.com to GitHub package repository
99
- Add documentation in README.md
10+
- Add `Steevanb\ParallelProcess\Process\BootstrapProcess`, it's the same as `BoostrapProcess`, name has been fixed
11+
- Set `Steevanb\ParallelProcess\Process\BoostrapProcess` as deprecated, it will be removed in 2.0.0: use `BootstrapProcess` instead
12+
- Add `#[\Override]` attribute
13+
- Fix PHP version for phpstan
14+
- Update CI tools
1015

1116
### [1.0.1](../../compare/1.0.0...1.0.1) - 2024-12-02
1217

config/ci/phpstan/common.neon

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
parameters:
2-
level: 8
2+
level: 9
33
paths:
44
- ../../../src
55
- ../../../tests
6+
checkMissingOverrideMethodAttribute: true
67
ignoreErrors:
78
# I can't remove this phpstan error because of the bad typehint of Symfony
89
- '#Method Steevanb\\ParallelProcess\\Console\\Output\\ConsoleBufferedOutput\:\:write\(\) has parameter \$messages with no value type specified in iterable type iterable.#'
@@ -14,6 +15,7 @@ parameters:
1415
-
1516
message: '#Return type \(void\) of method Steevanb\\ParallelProcess\\Console\\Application\\ParallelProcessesApplication::handleSignal\(\) should be compatible with return type \(int\|false\) of method Symfony\\Component\\Console\\Command\\SignalableCommandInterface::handleSignal\(\)#'
1617
reportUnmatched: false
18+
- '#Instantiation of deprecated class Steevanb\\ParallelProcess\\Process\\BoostrapProcess:#'
1719
includes:
1820
- /composer/common/vendor/phpstan/phpstan-deprecation-rules/rules.neon
1921
- /composer/common/vendor/phpstan/phpstan-phpunit/extension.neon
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
includes:
22
- common.neon
33
parameters:
4+
phpVersion: 80200
45
tmpDir: ../../../var/ci/phpstan/php-8-2/symfony-7-0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
includes:
22
- common.neon
33
parameters:
4+
phpVersion: 80200
45
tmpDir: ../../../var/ci/phpstan/php-8-2/symfony-7-1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
includes:
22
- common.neon
33
parameters:
4+
phpVersion: 80200
45
tmpDir: ../../../var/ci/phpstan/php-8-2/symfony-7-2
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
includes:
22
- common.neon
33
parameters:
4+
phpVersion: 80200
45
tmpDir: ../../../var/ci/phpstan/php-8-2/symfony-7-3
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
includes:
22
- common.neon
33
parameters:
4+
phpVersion: 80300
45
tmpDir: ../../../var/ci/phpstan/php-8-3/symfony-7-0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
includes:
22
- common.neon
33
parameters:
4+
phpVersion: 80300
45
tmpDir: ../../../var/ci/phpstan/php-8-3/symfony-7-1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
includes:
22
- common.neon
33
parameters:
4+
phpVersion: 80300
45
tmpDir: ../../../var/ci/phpstan/php-8-3/symfony-7-2

0 commit comments

Comments
 (0)