You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Warning: Constant VALET_* already defined in X
Similar issue as in laravel/prompts#146. To make packages like `symfony/var-dumper` available globally you prepend the global Composer autoload.php like so:
```
// php.ini
auto_prepend_file = ${HOME}/.composer/vendor/autoload.php
```
In Valet this can result in
```
( ! ) Warning: Constant VALET_HOME_PATH already defined in ~/.composer/vendor/laravel/valet/server.php on line 12
Call Stack
# Time Memory Function Location
1 0.0354 571296 {main}( ) .../server.php:0
2 0.0380 571488 define( $constant_name = 'VALET_HOME_PATH', $value = '~/.config/valet' ) .../server.php:12
( ! ) Warning: Constant VALET_STATIC_PREFIX already defined in ~/.composer/vendor/laravel/valet/server.php on line 13
Call Stack
# Time Memory Function Location
1 0.0354 571296 {main}( ) .../server.php:0
```
0 commit comments