Matt Stauffer
228834819e
Merge pull request #1440 from jasonvarga/statamic
...
Support static caching in Statamic
2023-09-24 21:02:40 -04:00
Matt Stauffer
e91d70f36f
Merge pull request #1439 from drbyte/laravel-driver-public-php-files
...
Allow LaravelValetDriver to serve other /public/*.php files
2023-09-24 21:00:45 -04:00
driesvints
03bb9cc131
Fix code styling
2023-09-21 19:31:00 +00:00
Dries Vints
55078675f4
PHP 8.3 ( #1448 )
...
* PHP 8.3
* PHP 8.3 (#1449 )
---------
Co-authored-by: Chris Brown <code@drbyte.dev >
2023-09-21 21:30:35 +02:00
driesvints
cdc8c19eff
Update CHANGELOG
2023-09-05 15:50:38 +00:00
driesvints
f37a474700
Fix code styling
2023-09-05 15:50:18 +00:00
Dries Vints
92c135e2dd
Update app.php
v4.3.0
2023-09-05 17:49:55 +02:00
Matt Stauffer
a6b94dcca7
Merge pull request #1438 from laravel/mes/drop-uninstalled-logs
...
Drop Mailhog and Redis from default logs list, since Valet doesn't install them
2023-08-29 17:10:56 -04:00
Dries Vints
11c6ae1206
Update app.php
2023-08-29 17:32:16 +02:00
Jason Varga
df9e1effe4
priority test
2023-08-28 16:09:24 -04:00
Jason Varga
b55140a079
adjust so that server variable doesnt need to be defined in all tests
2023-08-28 15:42:12 -04:00
Jason Varga
e52b901415
add test for static caching
2023-08-28 15:41:41 -04:00
Jason Varga
a93f267c03
adjust tests
2023-08-28 15:40:33 -04:00
Jason Varga
ee5391def6
rename
2023-08-28 15:14:38 -04:00
Jason Varga
fadd0d46b8
attempt statamic driver first
2023-08-28 14:38:58 -04:00
Jason Varga
12c10e0b03
add statamic driver
2023-08-28 14:38:42 -04:00
Chris Brown
cda54e17ea
Allow LaravelValetDriver to serve other /public/*.php files
...
When PHP files other than index.php exist in /public/ this allows them to be served by the Laravel driver.
I discussed this previously at: https://github.com/laravel/valet/discussions/1430#discussioncomment-6536474
... but I think it's safe to include in the core LaravelValetDriver by default.
2023-08-27 13:55:07 -04:00
Matt Stauffer
e03de8856f
Drop Mailhog and Redis from default logs list, since Valet doesn't install them
2023-08-27 11:13:47 -04:00
mattstauffer
9a4a7a1693
Fix code styling
2023-08-27 02:47:47 +00:00
Matt Stauffer
088667d0ca
Merge pull request #1422 from drbyte/stopdnsmasq
...
Add "valet stop dnsmasq" option
2023-08-26 22:47:18 -04:00
mattstauffer
2af8aba068
Update CHANGELOG
2023-08-14 19:05:59 +00:00
Matt Stauffer
9042c28a00
Bump version
v4.1.4
2023-08-14 15:05:12 -04:00
mattstauffer
d4ee503ec7
Fix code styling
2023-08-11 13:04:11 +00:00
Matt Stauffer
109c9d42ae
Merge pull request #1434 from mpociot/herd-patch
...
Only delete DNSMasq resolver when Herd is not installed
2023-08-11 09:03:47 -04:00
Matt Stauffer
2320d15f7d
Update cli/Valet/DnsMasq.php
...
Co-authored-by: Mateus Junges <mateus@junges.dev >
2023-08-11 09:03:30 -04:00
Marcel Pociot
0a33373bb6
Only delete resolver when Herd is not installed
2023-07-26 15:54:51 +02:00
driesvints
4007d256fd
Update CHANGELOG
2023-07-21 03:31:45 +00:00
Dries Vints
31017e611a
Update app.php
v4.1.3
2023-07-21 05:31:01 +02:00
driesvints
c1ef300469
Fix code styling
2023-07-21 03:30:59 +00:00
datashaman
b5103d15bb
Add quotes around $PHP ( #1431 )
...
If the PHP executable path has a space in it, it breaks valet. For example, when using the new Laravel Herd which stores its config and binaries under `~/Library/Application Support/Herd/...`
2023-07-21 05:30:32 +02:00
Chris Brown
269d157b0a
Add "valet stop dnsmasq" option
...
Fixes #1419
Adds:
- `valet stop dnsmasq`
- `valet stop all` (which includes php, nginx, dnsmasq)
- When `valet stop` is called without a service name, a message indicates that dnsmasq can also be stopped via `valet stop dnsmasq`
- Aside: phpfpm now also displays a message when stopping; previously it was silent.
2023-06-20 16:35:59 -04:00
driesvints
c7ace590ba
Update CHANGELOG
2023-05-30 14:53:31 +00:00
Dries Vints
3bb54ae5b0
Update app.php
v4.1.2
2023-05-30 16:52:55 +02:00
mattstauffer
a28d958afd
Fix code styling
2023-05-16 19:27:36 +00:00
Matt Stauffer
f8d4ef583d
Merge pull request #1415 from laravel/mes/ensure-base-configuration
...
Ensure base configuration is correct even if file already exists
2023-05-16 15:27:02 -04:00
Matt Stauffer
c95334a7e1
Merge pull request #1414 from laravel/mes/allow-custom-drivers-to-extend-specific-drivers
...
Load specific drivers before custom drivers to allow for extension.
2023-05-16 15:26:29 -04:00
driesvints
3f8396dfaa
Update CHANGELOG
2023-05-16 15:42:58 +00:00
Dries Vints
57d43bb289
Update app.php
v4.1.1
2023-05-16 17:41:40 +02:00
Matt Stauffer
9ce0ca97b2
Ensure base configuration is correct even if file already exists
2023-05-16 08:23:41 -04:00
Matt Stauffer
55ceb3a7ad
Load specific drivers before custom drivers to allow for extension.
...
Co-Authored-By: Chris Brown <code@drbyte.dev >
2023-05-15 12:26:47 -04:00
mattstauffer
a4145d77b5
Fix code styling
2023-05-12 02:23:35 +00:00
Matt Stauffer
228b6eb503
Merge pull request #1411 from drbyte/install-via-alt-tap
...
Install older PHP versions via alternate tap
2023-05-11 22:23:02 -04:00
driesvints
a6f0c643db
Update CHANGELOG
2023-05-09 15:54:07 +00:00
Dries Vints
0d3d537f50
Update app.php
v4.1.0
2023-05-09 17:53:19 +02:00
Chris Brown
615d61dc8e
Install older PHP versions via alternate tap
...
Fixes #1407
Homebrew's support policy now aggressively disables older versions earlier than it did previously.
That is why we tap the `shivammathur/php` repository.
But since Homebrew also now "keeps" those old formulae but marks them as disabled, when Valet runs `brew install php@7.4` it fails because Homebrew just aborts due to its flags in the outdated formula.
(They mark it as "disabled" and/or "keg_only :versioned_formula", but don't actually delete the formula from their repository.)
To override that we must use `brew install shivammathur/php/php@7.4` internally.
Therefore, we need to maintain a list of which PHP Versions we wish to specifically prefix with the `shivammathur/php` tap in order to bypass Homebrew's flags.
**ANNUAL MAINTENANCE**
1. This PR adds the array of `LIMITED_PHP_VERSIONS` which we will have to update annually when new PHP versions are retired as others are released.
2. We should also annually update the `LATEST_PHP_VERSION` string.
2023-05-05 22:17:42 -04:00
Matt Stauffer
1d6a55b227
Merge branch 'master' of github.com:laravel/valet
2023-05-05 15:05:52 -04:00
Matt Stauffer
0f95b03145
Fix Radicle code style with Pint
2023-05-05 15:05:48 -04:00
mattstauffer
58e3785f8e
Fix code styling
2023-05-05 19:05:18 +00:00
Matt Stauffer
2c3125bed8
Merge pull request #1413 from csorrentino/radicle-driver
...
Add driver for Radicle
2023-05-05 15:04:44 -04:00
Chris Sorrentino
5e69eab56c
fix namespacing
2023-05-03 11:29:04 -04:00