Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update issues with valet on arch linux #141

Open
wants to merge 11 commits into
base: master
Choose a base branch
from

Commits on Aug 11, 2024

  1. fix(pacman): Updated default php version for pacman

    Fixed the default package version for pacman to '';
    Pacman does have packages of the form php{version}-{extension}. so i
    chanded the default version of pacman to php-{extension}
    
    NB: This occurs only when the packageManager used is pacman.
    Stephan-MC committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    008ba3b View commit details
    Browse the repository at this point in the history
  2. fix(configuration): Configuration doesn't throw error when config fil…

    …e is missing
    
    Sometimes, valet install/uninstall will throw some file not found errors
    when you try installing valet in computer with no previous config files
    or config file absent
    Stephan-MC committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    e45241f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    689a4d5 View commit details
    Browse the repository at this point in the history
  4. fix(re-install): fixed issues with nginx configures sites

    If u tried installing nginx in a situation where ~/.config/valet/Nginx
    doesn't exist, it'll throw a warning saying the path/file (previous
    configured) doesn't exist
    Stephan-MC committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    da479a4 View commit details
    Browse the repository at this point in the history
  5. set a default domain while trying to resecure nginx domains

    With the previous changes made the prevents valet from getting configs
    from inexitent config files, i had the add a default custom domain while
    resecuring nginx configs
    Stephan-MC committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    6ab3a02 View commit details
    Browse the repository at this point in the history
  6. fix(php-extensions): Reassign php extensions for arch linux

    from the list of php extensions required by php-fpm, the only one
    installable on its own is php-gd (pacman package managers). I made sure
    to ignore the orders which caused an issue while downloading extensions.
    The others come with php by default
    Stephan-MC committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    cad8f1b View commit details
    Browse the repository at this point in the history
  7. fix(dnsmaql-install): Added a default domain for dnsmasq in case conf…

    …ig file doesn't exist
    
    Sometimes, valet's config file may be missing and will be suitable to
    add a default domain ('test') in case the config domain doesn't exists
    Stephan-MC committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    7d6db03 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    53c35ba View commit details
    Browse the repository at this point in the history
  9. fix(ca-certificates): Fix path of ca-certificates. ensuring backward …

    …compatibility
    
    Recent versions of ```ca-certificates``` are installed in
    ```/usr/share/ca-certificates``` whereas the path specified in valet is
    ```/usr/local/share/ca-certificates```. the previous path wasn't
    removed. but a check is done first to check if prevoious path exists
    before using recent path
    Stephan-MC committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    c9689d4 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Created a new method which determins if a package manager supports ve…

    …rsioned packages
    
    I create a new method on the PackageManager Contract which determines if
    a given package manager supports package versionning and implemented the
    method on all Package managers.
    Stephan-MC committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    739b9e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bc23197 View commit details
    Browse the repository at this point in the history