Skip to content

Commit

Permalink
Update the composer json tests
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Sep 6, 2023
1 parent 8db927a commit 159b8da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ jobs:
path: ~/.composer/cache/
key: composer-cache
- name: Install dependencies
run: composer install --no-interaction
run: composer update --no-interaction
- name: Install test dependencies
run: cd ./tests && composer install --no-interaction && cd ../
run: cd ./tests && composer update --no-interaction && cd ../
- name: Run shell-based test suite
if: runner.os == 'Linux'
run: ./tests/launch.sh
Expand Down
14 changes: 2 additions & 12 deletions tests/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,8 @@
"name": "tecnickcom/tcpdf-tests",
"type": "metapackage",
"description": "Dependencies for the test suite",
"keywords": [
"PDF",
"tcpdf",
"test"
],
"homepage": "http://www.tcpdf.org/",
"license": "LGPL-3.0-only",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Philippe Jausions",
Expand All @@ -18,7 +13,7 @@
],
"require": {
"PHP": ">=5.3.0",
"cs278/mktemp": "*"
"cs278/mktemp": "^1.2.0"
},
"suggest": {
"rosell-dk/locate-binaries": "Allows to detect executables such as pdfinfo"
Expand All @@ -27,10 +22,5 @@
"psr-4": {
"Tecnickcom\\TCPDF\\Tests\\": "src/"
}
},
"archive": {
"exclude": [
"/examples"
]
}
}

0 comments on commit 159b8da

Please sign in to comment.