Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 ```
- Loading branch information