We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent face362 commit 640e3aeCopy full SHA for 640e3ae
.github/workflows/e2e.yml
@@ -26,6 +26,10 @@ jobs:
26
args: ''
27
fail-fast: false
28
steps:
29
+ -
30
+ name: Install jq
31
+ run: sudo apt install jq
32
+
33
-
34
name: Checkout code
35
uses: actions/checkout@v4
@@ -50,6 +54,12 @@ jobs:
50
54
working-directory: analyser
51
55
run: composer install --no-progress --prefer-dist --no-interaction
52
56
57
58
+ name: Disable autoloader prepend
59
+ working-directory: ${{ matrix.name }}
60
+ run: |
61
+ echo "$(jq --indent 4 '.config += {"prepend-autoloader": false}' composer.json)" > composer.json
62
53
63
64
name: Install ${{ matrix.name }} dependencies
65
working-directory: ${{ matrix.name }}
0 commit comments