Skip to content

Commit

Permalink
fix: Missing doctrine/doctrine-bundle dependency in sub-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisemaupate committed Jul 13, 2024
1 parent 303a2f5 commit c019a62
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions lib/Documents/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,13 @@
"twig/twig": "^3.1"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.4",
"phpunit/phpunit": "^9.5",
"api-platform/metadata": "^3.2.12",
"squizlabs/php_codesniffer": "^3.5",
"doctrine/doctrine-bundle": "^2.8.1",
"php-coveralls/php-coveralls": "^2.4",
"phpstan/phpstan": "^1.5.3",
"phpstan/phpstan-doctrine": "^1.3"
"phpstan/phpstan-doctrine": "^1.3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 4 additions & 3 deletions lib/Models/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@
"symfony/validator": "6.4.*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"doctrine/doctrine-bundle": "^2.8.1",
"php-coveralls/php-coveralls": "^2.4",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.5.3"
"phpstan/phpstan": "^1.5.3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion lib/RoadizCoreBundle/.github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
restore-keys: |
${{ runner.os }}-php-${{ matrix.php-version }}-
- name: Install Dependencies
run: composer install --no-scripts --no-ansi --no-interaction --no-progress
run: composer install --no-ansi --no-interaction --no-progress
- name: Run PHP Code Sniffer
run: vendor/bin/phpcs -p ./src
- name: Run PHPStan
Expand Down

0 comments on commit c019a62

Please sign in to comment.