├── LICENSE.txt ├── bin └── ngrok ├── cli ├── Valet │ ├── CommandLine.php │ ├── Configuration.php │ ├── Contracts │ │ ├── PackageManager.php │ │ └── ServiceManager.php │ ├── DnsMasq.php │ ├── Filesystem.php │ ├── Nginx.php │ ├── Ngrok.php │ ├── PackageManagers │ │ ├── Apt.php │ │ ├── Dnf.php │ │ ├── PackageKit.php │ │ ├── Pacman.php │ │ └── Yum.php │ ├── PhpFpm.php │ ├── Requirements.php │ ├── ServiceManagers │ │ ├── LinuxService.php │ │ └── Systemd.php │ ├── Site.php │ └── Valet.php ├── drivers │ ├── BasicValetDriver.php │ ├── BedrockValetDriver.php │ ├── Cake2ValetDriver.php │ ├── CakeValetDriver.php │ ├── Concrete5ValetDriver.php │ ├── ContaoValetDriver.php │ ├── CraftValetDriver.php │ ├── DrupalValetDriver.php │ ├── JigsawValetDriver.php │ ├── JoomlaValetDriver.php │ ├── KatanaValetDriver.php │ ├── KirbyValetDriver.php │ ├── LaravelValetDriver.php │ ├── Magento2ValetDriver.php │ ├── NeosValetDriver.php │ ├── SculpinValetDriver.php │ ├── StatamicV1ValetDriver.php │ ├── StatamicValetDriver.php │ ├── SymfonyValetDriver.php │ ├── Typo3ValetDriver.php │ ├── ValetDriver.php │ ├── WordPressValetDriver.php │ └── require.php ├── includes │ ├── compatibility.php │ ├── facades.php │ └── helpers.php ├── scripts │ ├── fetch-share-url.sh │ ├── install.sh │ └── update.sh ├── stubs │ ├── SampleValetDriver.php │ ├── dnsmasq.conf │ ├── dnsmasq_options │ ├── fastcgi_params │ ├── fpm.conf │ ├── init │ │ ├── systemd │ │ └── sysvinit │ ├── networkmanager.conf │ ├── nginx.conf │ ├── openssl.conf │ ├── resolved.conf │ ├── secure.valet.conf │ ├── valet-dns │ └── valet.conf ├── templates │ └── 404.html └── valet.php ├── composer.json ├── develop ├── readme.md ├── server.php └── valet /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /bin/ngrok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/bin/ngrok -------------------------------------------------------------------------------- /cli/Valet/CommandLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/CommandLine.php -------------------------------------------------------------------------------- /cli/Valet/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/Configuration.php -------------------------------------------------------------------------------- /cli/Valet/Contracts/PackageManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/Contracts/PackageManager.php -------------------------------------------------------------------------------- /cli/Valet/Contracts/ServiceManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/Contracts/ServiceManager.php -------------------------------------------------------------------------------- /cli/Valet/DnsMasq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/DnsMasq.php -------------------------------------------------------------------------------- /cli/Valet/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/Filesystem.php -------------------------------------------------------------------------------- /cli/Valet/Nginx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/Nginx.php -------------------------------------------------------------------------------- /cli/Valet/Ngrok.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/Ngrok.php -------------------------------------------------------------------------------- /cli/Valet/PackageManagers/Apt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/PackageManagers/Apt.php -------------------------------------------------------------------------------- /cli/Valet/PackageManagers/Dnf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/PackageManagers/Dnf.php -------------------------------------------------------------------------------- /cli/Valet/PackageManagers/PackageKit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/PackageManagers/PackageKit.php -------------------------------------------------------------------------------- /cli/Valet/PackageManagers/Pacman.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/PackageManagers/Pacman.php -------------------------------------------------------------------------------- /cli/Valet/PackageManagers/Yum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/PackageManagers/Yum.php -------------------------------------------------------------------------------- /cli/Valet/PhpFpm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/PhpFpm.php -------------------------------------------------------------------------------- /cli/Valet/Requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/Requirements.php -------------------------------------------------------------------------------- /cli/Valet/ServiceManagers/LinuxService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/ServiceManagers/LinuxService.php -------------------------------------------------------------------------------- /cli/Valet/ServiceManagers/Systemd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/ServiceManagers/Systemd.php -------------------------------------------------------------------------------- /cli/Valet/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/Site.php -------------------------------------------------------------------------------- /cli/Valet/Valet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/Valet/Valet.php -------------------------------------------------------------------------------- /cli/drivers/BasicValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/BasicValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/BedrockValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/BedrockValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/Cake2ValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/Cake2ValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/CakeValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/CakeValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/Concrete5ValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/Concrete5ValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/ContaoValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/ContaoValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/CraftValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/CraftValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/DrupalValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/DrupalValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/JigsawValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/JigsawValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/JoomlaValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/JoomlaValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/KatanaValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/KatanaValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/KirbyValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/KirbyValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/LaravelValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/LaravelValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/Magento2ValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/Magento2ValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/NeosValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/NeosValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/SculpinValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/SculpinValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/StatamicV1ValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/StatamicV1ValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/StatamicValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/StatamicValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/SymfonyValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/SymfonyValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/Typo3ValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/Typo3ValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/ValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/ValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/WordPressValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/WordPressValetDriver.php -------------------------------------------------------------------------------- /cli/drivers/require.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/drivers/require.php -------------------------------------------------------------------------------- /cli/includes/compatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/includes/compatibility.php -------------------------------------------------------------------------------- /cli/includes/facades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/includes/facades.php -------------------------------------------------------------------------------- /cli/includes/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/includes/helpers.php -------------------------------------------------------------------------------- /cli/scripts/fetch-share-url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/scripts/fetch-share-url.sh -------------------------------------------------------------------------------- /cli/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/scripts/install.sh -------------------------------------------------------------------------------- /cli/scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/scripts/update.sh -------------------------------------------------------------------------------- /cli/stubs/SampleValetDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/SampleValetDriver.php -------------------------------------------------------------------------------- /cli/stubs/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/dnsmasq.conf -------------------------------------------------------------------------------- /cli/stubs/dnsmasq_options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/dnsmasq_options -------------------------------------------------------------------------------- /cli/stubs/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/fastcgi_params -------------------------------------------------------------------------------- /cli/stubs/fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/fpm.conf -------------------------------------------------------------------------------- /cli/stubs/init/systemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/init/systemd -------------------------------------------------------------------------------- /cli/stubs/init/sysvinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/init/sysvinit -------------------------------------------------------------------------------- /cli/stubs/networkmanager.conf: -------------------------------------------------------------------------------- 1 | [main] 2 | dns=none 3 | -------------------------------------------------------------------------------- /cli/stubs/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/nginx.conf -------------------------------------------------------------------------------- /cli/stubs/openssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/openssl.conf -------------------------------------------------------------------------------- /cli/stubs/resolved.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/resolved.conf -------------------------------------------------------------------------------- /cli/stubs/secure.valet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/secure.valet.conf -------------------------------------------------------------------------------- /cli/stubs/valet-dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/valet-dns -------------------------------------------------------------------------------- /cli/stubs/valet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/stubs/valet.conf -------------------------------------------------------------------------------- /cli/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/templates/404.html -------------------------------------------------------------------------------- /cli/valet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/cli/valet.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/composer.json -------------------------------------------------------------------------------- /develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/develop -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/readme.md -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/server.php -------------------------------------------------------------------------------- /valet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmarcher/valet-linux/HEAD/valet --------------------------------------------------------------------------------