Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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