Skip to content

Commit e6a6aa5

Browse files
committed
Tighten low end dependencies
1 parent 590316f commit e6a6aa5

File tree

3 files changed

+12
-35
lines changed

3 files changed

+12
-35
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -69,25 +69,6 @@ jobs:
6969
- name: Run automated tests
7070
run: vendor/bin/phpunit --coverage-text --coverage-xml build/coverage-xml --coverage-cobertura build/cobertura.xml
7171

72-
- name: Code Coverage Report
73-
uses: irongut/[email protected]
74-
with:
75-
filename: build/cobertura.xml
76-
fail_below_min: true
77-
format: markdown
78-
hide_branch_rate: false
79-
hide_complexity: true
80-
indicators: true
81-
output: both
82-
thresholds: '80 90'
83-
84-
- name: Add Coverage PR Comment
85-
uses: marocchino/sticky-pull-request-comment@v2
86-
if: github.event_name == 'pull_request'
87-
with:
88-
recreate: true
89-
path: code-coverage-results.md
90-
9172
- name: Upload coverage reports to Codecov
9273
uses: codecov/codecov-action@v3
9374
env:

bin/prepare-commit

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,9 @@ export XDEBUG_MODE=coverage
99
vendor/bin/php-cs-fixer fix
1010
vendor/bin/phpstan
1111

12-
# Clear cache and quarantine manually to avoid locking up with corrupted container
12+
# Clear cache manually to avoid locking up with corrupted container
1313
rm -rf tests/Fixtures/var/cache/test
1414
php -d "zend.assertions=1" vendor/bin/phpunit --testdox --coverage-text \
1515
--coverage-xml=build/coverage/coverage-xml --log-junit=build/coverage/junit.xml
1616

17-
# Run with lower MSI in diff-filter mode as it doesn't include coverage from other tests
18-
#vendor/bin/infection --threads=max --git-diff-filter=AM --min-msi=80 --min-covered-msi=80 \
19-
# --coverage=build/coverage
20-
2117
echo "All good, ready for commit!"

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
"ext-mongodb": "*",
3434
"ext-pdo_sqlite": "*",
3535
"ext-zip": "*",
36-
"doctrine/common": "^2.6|^3.3",
36+
"doctrine/common": "^3.4",
3737
"doctrine/doctrine-bundle": "^2.11.1",
38-
"doctrine/orm": "^2.17",
39-
"doctrine/persistence": "^3.0.3",
38+
"doctrine/orm": "^2.17.1",
39+
"doctrine/persistence": "^3.2.0",
4040
"friendsofphp/php-cs-fixer": "^v3.40.0",
4141
"mongodb/mongodb": "^1.12",
4242
"ocramius/package-versions": "^2.8",
@@ -48,16 +48,16 @@
4848
"phpstan/phpstan-symfony": "^1.3.5",
4949
"phpunit/phpunit": "^10.5.1",
5050
"ruflin/elastica": "^6.2|^7.2",
51-
"symfony/browser-kit": "^6.1.3|^7.0",
52-
"symfony/css-selector": "^6.1.3|^7.0",
51+
"symfony/browser-kit": "^6.3|^7.0",
52+
"symfony/css-selector": "^6.3|^7.0",
5353
"symfony/doctrine-bridge": "^6.3|^7.0",
54-
"symfony/dom-crawler": "^6.3.0|^7.0",
55-
"symfony/intl": "^6.1|^7.0",
56-
"symfony/mime": "^6.2.0|^7.0",
54+
"symfony/dom-crawler": "^6.3|^7.0",
55+
"symfony/intl": "^6.3|^7.0",
56+
"symfony/mime": "^6.3|^7.0",
5757
"symfony/phpunit-bridge": "^6.3|^7.0",
58-
"symfony/twig-bundle": "^6.1.1|^7.0",
59-
"symfony/var-dumper": "^6.3.0|^7.0",
60-
"symfony/yaml": "^6.1.3|^7.0"
58+
"symfony/twig-bundle": "^6.3|^7.0",
59+
"symfony/var-dumper": "^6.3|^7.0",
60+
"symfony/yaml": "^6.3|^7.0"
6161
},
6262
"suggest": {
6363
"doctrine/doctrine-bundle": "For integrated access to Doctrine object managers",

0 commit comments

Comments
 (0)