Skip to content

Commit

Permalink
Remove unused doctrine/orm dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
janedbal committed Jan 23, 2024
1 parent 5f591ed commit e4767b8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,25 @@ jobs:
- name: Run Psalm
run: vendor/bin/psalm --show-info=false --find-unused-psalm-suppress --no-progress

deps:
name: Check dependencies
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3

- name: Install composer dependencies
uses: ramsey/composer-install@v2

- name: Run composer-dependency-analyser
run: composer dump -a && vendor/bin/composer-dependency-analyser

phpunit:
name: PHPUnit
runs-on: ubuntu-latest
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"require": {
"brick/date-time": "~0.6.0",
"doctrine/dbal": "^2.7.0 || ^3.0",
"doctrine/orm": "^2.7.0",
"php": "^8.1"
},
"require-dev": {
Expand All @@ -21,7 +20,9 @@
"php-coveralls/php-coveralls": "^2.4",
"vimeo/psalm": "5.17.0",
"doctrine/annotations": "^1.0",
"guzzlehttp/guzzle": "^7.0"
"doctrine/orm": "^2.7.0",
"guzzlehttp/guzzle": "^7.0",
"shipmonk/composer-dependency-analyser": "^1.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit e4767b8

Please sign in to comment.