Skip to content

Commit

Permalink
Remove dependency checker
Browse files Browse the repository at this point in the history
  • Loading branch information
loicsapone committed Apr 4, 2024
1 parent 195614a commit 549cd46
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 34 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,6 @@ on:
- 4.x

jobs:
check-dependencies:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
coverage: none
tools: composer-require-checker, composer-unused

- name: Install dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependencies }}

- name: Composer Require Checker
run: composer-require-checker

- name: Composer Unused
run: composer-unused --excludePackage=symfony/dependency-injection --excludePackage=symfony/property-access

php-cs-fixer:
runs-on: ubuntu-latest

Expand Down
10 changes: 0 additions & 10 deletions docker/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,3 @@ RUN set -eux; \
pcntl \
zip \
;

RUN set -eux; \
curl -OL https://github.com/composer-unused/composer-unused/releases/latest/download/composer-unused.phar; \
chmod a+x composer-unused.phar; \
mv composer-unused.phar /usr/local/bin/composer-unused

RUN set -eux; \
curl -OL https://github.com/maglnet/ComposerRequireChecker/releases/latest/download/composer-require-checker.phar; \
chmod a+x composer-require-checker.phar; \
mv composer-require-checker.phar /usr/local/bin/composer-require-checker

0 comments on commit 549cd46

Please sign in to comment.