-
Notifications
You must be signed in to change notification settings - Fork 701
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
[WIP] Multiple/Parallel PHP Version Support for Valet -- Updated #1198
Merged
Merged
Changes from 22 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
37b4af4
Multiple/Parallel PHP Version Support for Valet
NasirNobin acf190c
Apply suggestions from code review
NasirNobin c247dc9
Add Valet PHP isolation remover option & apply more suggestions from …
NasirNobin 8de8d9b
Stop unused PHP versions
NasirNobin 794e366
StyleCI Patch
NasirNobin 5c10437
Apply refactor & cleanup from the code review
NasirNobin 49ca4ae
Apply suggestions from code review
NasirNobin 3c83367
Apply more suggestions from code review
NasirNobin cc41e3c
Update cli/Valet/PhpFpm.php
NasirNobin 9a5d30b
Tests for Parallel PHP Version Support
NasirNobin 7a80a2e
Apply suggestions from code review
NasirNobin a34073e
Merge branch 'master' of https://github.com/NasirNobin/valet into Nas…
mattstauffer eefc06b
Drop PHP 5.6; extract site-specific PHP version isolation to its own …
mattstauffer e797774
Apply fixes from StyleCI
StyleCIBot 33c797f
Drop need to pass sock to isolate command
mattstauffer 55c7dcb
Move string concat to one line
mattstauffer 5aa253a
Move string concat to one line
mattstauffer 0a677e2
Apply fixes from StyleCI
StyleCIBot c5903ee
Drop config files from new test layout
mattstauffer 79da3e1
Merge branch 'NasirNobin-master' of github.com:laravel/valet into Nas…
mattstauffer 5923548
Rename isolateDirectory
mattstauffer 3570c74
Clean up PhpFPM readability
mattstauffer 51742b3
Make primary valet.sock a symlink to an existing version
mattstauffer 89fd8bc
Apply fixes from StyleCI
StyleCIBot 7226da5
Update valet.sock symlink
mattstauffer 530e4c3
Update normalizePhpVersion regex
mattstauffer 34f776b
Re-work isolate and unisolate to run in cwd
mattstauffer 4ab6f46
Merge branch 'mes/symlink-valet-socks' of github.com:laravel/valet in…
mattstauffer fd47384
Apply fixes from StyleCI
StyleCIBot 148eb01
Drop test coverage for deprecated method
mattstauffer 95aa039
Add command to list isolated sites
mattstauffer 9b8c41e
Apply fixes from StyleCI
StyleCIBot 10eeaea
Merge
mattstauffer 8f7ea04
Test isolatedDirectories
mattstauffer 38a1929
Apply fixes from StyleCI
StyleCIBot 3cdb7c7
Drop space before colon in magic isolation string
mattstauffer 8590d8e
Merge
mattstauffer 118e0a3
Update str_contains to strpos
mattstauffer 984d7eb
Add PHP Version to the isolated command
mattstauffer ce4682f
Fix PHPFpm tests
mattstauffer 791a047
Apply fixes from StyleCI
StyleCIBot 17cda5d
Drop todos
mattstauffer 021dfe9
Merge branch 'mes/symlink-valet-socks' of github.com:laravel/valet in…
mattstauffer b8885a4
Move deleting valet.sock into install()
mattstauffer e4c7a9b
Symlink valet.sock *after* restarting so it's not deleted by restarti…
mattstauffer 383aa62
Change magic isolation config string to "ISOLATED_PHP_VERSION"
mattstauffer 80b7e61
Merge pull request #1201 from laravel/mes/symlink-valet-socks
mattstauffer b1d9b2b
Clean up
mattstauffer b09a916
Inline site check in unisolate command
mattstauffer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ composer.lock | |
error.log | ||
.idea | ||
.phpunit.result.cache | ||
tests/conf.d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,10 @@ class Brew | |
'[email protected]', | ||
'[email protected]', | ||
'[email protected]', | ||
'[email protected]', | ||
'php73', | ||
'php72', | ||
'php71', | ||
'php70', | ||
'php56', | ||
]; | ||
|
||
const LATEST_PHP_VERSION = '[email protected]'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably requires a new major version release?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@driesvints Yah.. good call, thank you.