|
97 | 97 | "@clean", |
98 | 98 | "@tools:install", |
99 | 99 | "@dependencies:install", |
100 | | - "composer outdated --locked --direct --strict --sort-by-age --ansi" |
| 100 | + "XDEBUG_MODE=off composer outdated --locked --direct --strict --sort-by-age --ansi" |
101 | 101 | ], |
102 | | - "dependencies:install": "composer install --no-interaction --no-progress --ansi --ignore-platform-req=ext-grpc", |
| 102 | + "dependencies:install": "XDEBUG_MODE=off composer install --no-interaction --no-progress --ansi --ignore-platform-req=ext-grpc", |
103 | 103 | "dependencies:update": [ |
104 | | - "composer update --no-interaction --no-progress --ansi --ignore-platform-req=ext-grpc", |
105 | | - "composer bump --no-interaction --ansi" |
| 104 | + "XDEBUG_MODE=off composer update --no-interaction --no-progress --ansi --ignore-platform-req=ext-grpc", |
| 105 | + "XDEBUG_MODE=off composer bump --no-interaction --ansi" |
106 | 106 | ], |
107 | 107 | "docs": [ |
108 | 108 | "@docs:clean", |
|
118 | 118 | ], |
119 | 119 | "docs:setup": "cd docs && uv sync", |
120 | 120 | "lint": [ |
121 | | - "tools/rector --ansi --dry-run", |
122 | | - "tools/php-cs-fixer check --ansi --diff --verbose", |
| 121 | + "XDEBUG_MODE=off tools/rector --ansi --dry-run", |
| 122 | + "XDEBUG_MODE=off tools/php-cs-fixer check --ansi --diff --verbose", |
123 | 123 | "@lint:composer" |
124 | 124 | ], |
125 | | - "lint:composer": "tools/composer-normalize --ansi --dry-run", |
126 | | - "lint:composer:fix": "tools/composer-normalize --ansi", |
| 125 | + "lint:composer": "XDEBUG_MODE=off tools/composer-normalize --ansi --dry-run", |
| 126 | + "lint:composer:fix": "XDEBUG_MODE=off tools/composer-normalize --ansi", |
127 | 127 | "lint:fix": [ |
128 | | - "tools/rector --ansi", |
129 | | - "tools/php-cs-fixer fix --ansi --diff --verbose", |
| 128 | + "XDEBUG_MODE=off tools/rector --ansi", |
| 129 | + "XDEBUG_MODE=off tools/php-cs-fixer fix --ansi --diff --verbose", |
130 | 130 | "@lint:composer:fix" |
131 | 131 | ], |
132 | 132 | "pre-push": [ |
133 | 133 | "@lint:fix", |
134 | 134 | "@test:all", |
135 | 135 | "@test:bc" |
136 | 136 | ], |
137 | | - "rector": "tools/rector --ansi --dry-run", |
| 137 | + "rector": "XDEBUG_MODE=off tools/rector --ansi --dry-run", |
138 | 138 | "rector:fix": [ |
139 | | - "tools/rector --ansi", |
140 | | - "tools/php-cs-fixer fix --ansi --diff --verbose" |
| 139 | + "XDEBUG_MODE=off tools/rector --ansi", |
| 140 | + "XDEBUG_MODE=off tools/php-cs-fixer fix --ansi --diff --verbose" |
141 | 141 | ], |
142 | | - "reset-project": "tests/bin/reset-project", |
| 142 | + "reset-project": "XDEBUG_MODE=off tests/bin/reset-project", |
143 | 143 | "setup": [ |
144 | 144 | "@clean:build-artifacts", |
145 | 145 | "@tools:install", |
|
163 | 163 | "mkdir -p build", |
164 | 164 | "XDEBUG_MODE=coverage tools/phpunit --colors=always --testdox --coverage-text --coverage-html=build/coverage --coverage-clover=build/coverage/clover.xml" |
165 | 165 | ], |
166 | | - "test:emulator": "FIREBASE_AUTH_EMULATOR_HOST=localhost:9099 FIREBASE_DATABASE_EMULATOR_HOST=localhost:9100 firebase emulators:exec --only auth,database --project beste-firebase 'tools/phpunit --group=emulator'", |
167 | | - "test:integration": "tools/phpunit --testsuite=integration", |
168 | | - "test:unit": "tools/phpunit --testsuite=unit --colors=always --testdox", |
169 | | - "tools:install": "tools/phive --no-progress install --trust-gpg-keys E82B2FB314E9906E,4AA394086372C20A,C00543248C87FB13", |
| 166 | + "test:emulator": "FIREBASE_AUTH_EMULATOR_HOST=localhost:9099 FIREBASE_DATABASE_EMULATOR_HOST=localhost:9100 firebase emulators:exec --only auth,database --project beste-firebase 'XDEBUG_MODE=off tools/phpunit --group=emulator'", |
| 167 | + "test:integration": "XDEBUG_MODE=off tools/phpunit --testsuite=integration", |
| 168 | + "test:unit": "XDEBUG_MODE=off tools/phpunit --testsuite=unit --colors=always --testdox", |
| 169 | + "tools:install": "XDEBUG_MODE=off tools/phive --no-progress install --trust-gpg-keys E82B2FB314E9906E,4AA394086372C20A,C00543248C87FB13", |
170 | 170 | "tools:link": [ |
171 | 171 | "ln -snf phpunit tools/phpunit.phar", |
172 | 172 | "ln -snf .phpstan/vendor/bin/phpstan tools/phpstan", |
173 | 173 | "ln -snf .rector/vendor/bin/rector tools/rector" |
174 | 174 | ], |
175 | | - "tools:phpstan:install": "composer --working-dir=tools/.phpstan install --no-interaction --no-progress --ansi", |
| 175 | + "tools:phpstan:install": "XDEBUG_MODE=off composer --working-dir=tools/.phpstan install --no-interaction --no-progress --ansi", |
176 | 176 | "tools:phpstan:update": [ |
177 | | - "composer --working-dir=tools/.phpstan update --no-interaction --no-progress --ansi", |
178 | | - "composer --working-dir=tools/.phpstan bump --no-interaction --ansi" |
| 177 | + "XDEBUG_MODE=off composer --working-dir=tools/.phpstan update --no-interaction --no-progress --ansi", |
| 178 | + "XDEBUG_MODE=off composer --working-dir=tools/.phpstan bump --no-interaction --ansi" |
179 | 179 | ], |
180 | | - "tools:rector:install": "composer --working-dir=tools/.rector install --no-interaction --no-progress --ansi", |
| 180 | + "tools:rector:install": "XDEBUG_MODE=off composer --working-dir=tools/.rector install --no-interaction --no-progress --ansi", |
181 | 181 | "tools:rector:update": [ |
182 | | - "composer --working-dir=tools/.rector update --no-interaction --no-progress --ansi", |
183 | | - "composer --working-dir=tools/.rector bump --no-interaction --ansi" |
| 182 | + "XDEBUG_MODE=off composer --working-dir=tools/.rector update --no-interaction --no-progress --ansi", |
| 183 | + "XDEBUG_MODE=off composer --working-dir=tools/.rector bump --no-interaction --ansi" |
184 | 184 | ], |
185 | 185 | "tools:update": [ |
186 | | - "tools/phive --no-progress selfupdate", |
187 | | - "tools/phive --no-progress update", |
| 186 | + "XDEBUG_MODE=off tools/phive --no-progress selfupdate", |
| 187 | + "XDEBUG_MODE=off tools/phive --no-progress update", |
188 | 188 | "@tools:phpstan:update", |
189 | 189 | "@tools:rector:update", |
190 | 190 | "@tools:link" |
|
0 commit comments