Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1247b0b

Browse files
authored
chore: remove paratest from dev dependencies (#1023)
1 parent 11355a9 commit 1247b0b

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/phpunit.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ jobs:
254254
- name: Setup PHP
255255
uses: shivammathur/setup-php@v2
256256
with:
257-
php-version: 8.3
257+
php-version: 8.4
258258
coverage: none
259259
tools: flex
260260

@@ -269,6 +269,10 @@ jobs:
269269
- name: Set up MySQL
270270
run: sudo /etc/init.d/mysql start
271271

272+
- name: Install paratest
273+
run: composer require brianium/paratest --dev
274+
shell: bash
275+
272276
- name: Test
273277
run: vendor/bin/paratest --processes 1 --configuration phpunit-paratest.xml.dist
274278
shell: bash

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
},
2828
"require-dev": {
2929
"bamarni/composer-bin-plugin": "^1.8",
30-
"brianium/paratest": "^6|^7",
3130
"dama/doctrine-test-bundle": "^8.0",
3231
"doctrine/collections": "^1.7|^2.0",
3332
"doctrine/common": "^3.2.2",

phpunit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ SHOULD_UPDATE_PHPUNIT=$(check_phpunit_version "${PHPUNIT_VERSION}")
3737

3838
if [ "${SHOULD_UPDATE_PHPUNIT}" = "0" ]; then
3939
echo "ℹ️ Upgrading PHPUnit to ${PHPUNIT_VERSION}"
40-
${COMPOSER_BIN} update dama/doctrine-test-bundle brianium/paratest "phpunit/phpunit:^${PHPUNIT_VERSION}" -W
40+
${COMPOSER_BIN} update dama/doctrine-test-bundle "phpunit/phpunit:^${PHPUNIT_VERSION}" -W
4141
fi
4242
### <<
4343

phpunit-deprecation-baseline.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Foundry now leverages the native PHP lazy system to auto-refresh objects (it can
1414
See https://github.com/zenstruck/foundry/blob/2.x/UPGRADE-2.7.md to upgrade.]]></issue>
1515

1616
<issue><![CDATA[Support for MySQL < 8 is deprecated and will be removed in DBAL 5 (AbstractMySQLDriver.php:75 called by AbstractDriverMiddleware.php:32, https://github.com/doctrine/dbal/pull/6343, package doctrine/dbal)]]></issue>
17+
<issue><![CDATA[Since doctrine/mongodb-odm 2.14: Not using native lazy objects is deprecated and will be impossible in Doctrine MongoDB ODM 3.0.]]></issue>
1718
</line>
1819
</file>
1920
<file path="vendor/doctrine/deprecations/src/Deprecation.php">

0 commit comments

Comments
 (0)