mattstauffer/craftcms-prune 50
CraftCMS Prune Twig plugin
mattstauffer/alberts-avocado-toast 31
A simple example web site of some common geospatial and map embedding features
mattstauffer/craftcms-DownloadAssets 9
Craft CMS plugin to download Assets as a Zip
mattstauffer/craftPluginDevHelpers 8
Helpers for Craft Plugin development
mattstauffer/awesome-helpers 5
Helper functions I find super-duper handy
Simple script to set up my new computer
:whale: Dockette PHP 5.6 / 7.0 / 7.1 + FPM + Composer (Prestissimo)
push eventmattstauffer/dotfiles
commit sha cbaf07d3bf9a05602319f4029a003cc8b3f3adb7
Wip
push time in a day
push eventtightenco/automation-scripts
commit sha b74492c238c99d464c905e21cef54e26198dce66
Add custom reload spoon and Hammerspoon setup instructions
push time in a day
push eventtightenco/automation-scripts
commit sha 86d3116c12e978bf92c9ff124c409979359c4841
Update 'open anything' error with not-defined app to add a button to copy the current app's bundle ID. Co-authored-by: Jose Soto <[email protected]>
push time in a day
Pull request review commenttightenco/lambo
class DisplayHelpScreen public function __invoke() {+ $consoleWriter = app('console-writer');
Could we inject this once you make it a class
comment created time in 2 days
Pull request review commenttightenco/lambo
class CustomizeDotEnv {- use LamboAction;- public function __invoke() {- $this->logStep('Customizing .env and .env.example');+ app('console-writer')->logStep('Customizing .env and .env.example'); $filePath = config('lambo.store.project_path') . '/.env.example'; $output = $this->customize(File::get($filePath)); File::put($filePath, $output);- File::put(str_replace('.env.example', '.env', $filePath), $output);+ File::put(str_replace(' .env.example', '.env', $filePath), $output);
File::put(str_replace('.env.example', '.env', $filePath), $output);
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\LogsToConsole;-use Exception;+use App\LamboException; trait LamboAction
Rename this trait to abortsCommands
comment created time in 2 days
Pull request review commenttightenco/lambo
public function __invoke() $this->silentDevScript->add(); - $this->logStep('Compiling project assets');+ app('console-writer')->logStep('Compiling project assets');
(If we did that, we may want to make a helper that was something like makeAndInvoke(ConsoleWriter::class) or something
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\Shell\Shell;+use App\Shell;+use Illuminate\Support\Facades\Config; class ConfigureFrontendFramework { use LamboAction; private $shell;- private $laravelUi;+ private $availableFrontends; public function __construct(Shell $shell, LaravelUi $laravelUi) { $this->shell = $shell; $this->laravelUi = $laravelUi; } - public function __invoke()+ public function __invoke(array $availableFrontends) {- if (! config('lambo.store.frontend')) {+ $this->availableFrontends = $availableFrontends;++ if (! Config::get('lambo.store.frontend')) {
Remember to remove all use of the config facade and replace, for now, with the global helper
comment created time in 2 days
Pull request review commenttightenco/lambo
public function __construct(Shell $shell) public function __invoke() {- $this->logStep('Running php artisan key:generate');+ app('console-writer')->logStep('Setting APP_KEY in .env'); - $process = $this->shell->execInProject('php artisan key:generate');+ $process = $this->shell->execInProject(sprintf("php artisan key:generate%s", $this->withQuiet()));
$process = $this->shell->execInProject("php artisan key:generate{$this->withQuiet()}");
comment created time in 2 days
Pull request review commenttightenco/lambo
public function __invoke() return; } + app('console-writer')->logStep('Installing node dependencies');+ $process = $this->shell->execInProject("npm install{$this->extraOptions()}"); $this->abortIf(! $process->isSuccessful(), 'Installation of npm dependencies did not complete successfully', $process); - $this->info('Npm dependencies installed.');+ app('console-writer')->newLine();+ app('console-writer')->success('Npm dependencies installed.'); } public function extraOptions()
Can we rename this withQuiet
comment created time in 2 days
Pull request review commenttightenco/lambo
public function __invoke() return; } - if (! $this->mysqlExists()) {- return "MySQL does not seem to be installed. Skipping new database creation.";- }+ app('console-writer')->logStep('Creating database');++ $this->abortIf(! $this->mysqlExists(), "I can't create a database for your project because MySQL does not seem to be installed."); - $this->logStep('Creating database');+ if (! $this->mysqlServerRunning()) {+ app('console-writer')->ignoreVerbosity()->warn('Skipping database creation');+ app('console-writer')->ignoreVerbosity()->warn("I can't create a database for your project because your MySQL server does not seem to be running.");+ return;+ }
Can we merge these two into a single check, shaped like the second block, and just update the if to check for either condition, and update the message to say "because you don't have MySQL installed or it's not running"
comment created time in 2 days
Pull request review commenttightenco/lambo
public function install() return; } - $this->logStep('To use Laravel frontend scaffolding the composer package laravel/ui is required. Installing now...');+ app('console-writer')->note('To use Laravel frontend scaffolding the composer package laravel/ui is required. Installing now...'); - $process = $this->shell->execInProject('composer require laravel/ui --quiet');+ $process = $this->shell->execInProject('composer require laravel/ui' . $this->withQuiet());
$process = $this->shell->execInProject("composer require laravel/ui{$this->withQuiet()}");
comment created time in 2 days
Pull request review commenttightenco/lambo
class DisplayLamboWelcome {- use LamboAction;- protected $lamboLogo = " __ __ :version: / / ____ _____ ___ / /_ ____ / / / __ `/ __ `__ \/ __ \/ __ \ / /___/ /_/ / / / / / / /_/ / /_/ / /_____/\__,_/_/ /_/ /_/_.___/\____/";-- protected $welcomeText = "-<info>Lambo:</info> Super-powered <comment>'laravel new'</comment> for Laravel and Valet.\n";- public function __construct() { $this->lamboLogo = str_replace(':version:', config('app.version'), $this->lamboLogo); } public function __invoke() {- foreach (explode("\n", $this->lamboLogo) as $line) {- // Extra space on the end fixes an issue with console when it ends with backslash- $this->info($line . " ");- }-- foreach (explode("\n", $this->welcomeText) as $line) {- // Extra space on the end fixes an issue with console when it ends with backslash- $this->line($line . " ");- }+ // Extra space on the end fixes an issue with console when it ends with backslash+ $logo = collect(explode("\n", $this->lamboLogo))->reduce(function ($carry, $line) {+ return sprintf("%s%s\n", $carry, $line);+ });+ app('console-writer')->ignoreVerbosity()->text("<info>${logo}</info>");+ app('console-writer')->ignoreVerbosity()->text("<info>Lambo:</info> Super-powered <comment>'laravel new'</comment> for Laravel and Valet.");
Can we move this back to a property
comment created time in 2 days
Pull request review commenttightenco/lambo
public function __construct(Shell $shell) public function __invoke() {- $this->logStep('Initializing git repository');+ app('console-writer')->logStep('Initializing git repository'); - $this->execAndCheck('git init');+ $this->execAndCheck('git init' . $this->withQuiet());
$this->execAndCheck("git init{$this->withQuiet()}");
comment created time in 2 days
Pull request review commenttightenco/lambo
class DisplayHelpScreen public function __invoke() {+ $consoleWriter = app('console-writer'); - $this->line("\n<comment>Usage:</comment>");- $this->line(" lambo new myApplication [arguments]\n");- $this->line("<comment>Commands (lambo COMMANDNAME):</comment>");+ $consoleWriter->newLine();+ $consoleWriter->ignoreVerbosity()->text("<comment>Usage:</comment>");
What if we re-work ignoreVerbosity to instead be a verbose() modifier on anything that should only output on verbose mode?
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\Shell\Shell;+use App\Shell;+use Illuminate\Support\Facades\Config; class ConfigureFrontendFramework { use LamboAction; private $shell;- private $laravelUi;+ private $availableFrontends; public function __construct(Shell $shell, LaravelUi $laravelUi) { $this->shell = $shell; $this->laravelUi = $laravelUi; } - public function __invoke()+ public function __invoke(array $availableFrontends) {- if (! config('lambo.store.frontend')) {+ $this->availableFrontends = $availableFrontends;++ if (! Config::get('lambo.store.frontend')) { return; } - $this->laravelUi->install();+ app('console-writer')->logStep('Configuring frontend scaffolding');++ if ($this->continueInstallation()) {
exit early;
if (! $this->choseValidFrontend()) {
app('console-writer')->success('No frontend framework will be installed.', ' OK ');
return false;
}
// Perform the actual behavior...
comment created time in 2 days
Pull request review commenttightenco/lambo
public function __construct(Shell $shell) public function __invoke() {- $this->logStep('Running php artisan key:generate');+ app('console-writer')->logStep('Setting APP_KEY in .env'); - $process = $this->shell->execInProject('php artisan key:generate');+ $process = $this->shell->execInProject(sprintf("php artisan key:generate%s", $this->withQuiet())); $this->abortIf(! $process->isSuccessful(), 'Failed to generate application key successfully', $process);
Failed to generated APP_KEY successfully
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\Shell\Shell;+use App\Shell;+use Illuminate\Support\Facades\Config; class ConfigureFrontendFramework { use LamboAction; private $shell;- private $laravelUi;+ private $availableFrontends; public function __construct(Shell $shell, LaravelUi $laravelUi) { $this->shell = $shell; $this->laravelUi = $laravelUi; } - public function __invoke()+ public function __invoke(array $availableFrontends) {- if (! config('lambo.store.frontend')) {+ $this->availableFrontends = $availableFrontends;++ if (! Config::get('lambo.store.frontend')) { return; } - $this->laravelUi->install();+ app('console-writer')->logStep('Configuring frontend scaffolding');++ if ($this->continueInstallation()) {+ $this->laravelUi->install();++ $process = $this->shell->execInProject(sprintf("php artisan ui %s%s", config('lambo.store.frontend'), $this->extraOptions()));++ $this->abortIf(! $process->isSuccessful(), sprintf("Installation of %s UI scaffolding did not complete successfully.", config('lambo.store.frontend')), $process);++ app('console-writer')->success(config('lambo.store.frontend') . ' ui scaffolding installed.');+ }+ }++ private function continueInstallation(): bool+ {+ if ($this->validFrontend()) {+ return true;+ }++ $configuredFrontend = $this->chooseFrontend();
Can we possibly move this into a class that's responsible for validating and normalizing the user's input so that isn't having to happen inside this action class?
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\Shell\Shell;+use App\Shell;+use Illuminate\Support\Facades\Config; class ConfigureFrontendFramework { use LamboAction; private $shell;- private $laravelUi;+ private $availableFrontends; public function __construct(Shell $shell, LaravelUi $laravelUi) { $this->shell = $shell; $this->laravelUi = $laravelUi; } - public function __invoke()+ public function __invoke(array $availableFrontends) {- if (! config('lambo.store.frontend')) {+ $this->availableFrontends = $availableFrontends;++ if (! Config::get('lambo.store.frontend')) { return; } - $this->laravelUi->install();+ app('console-writer')->logStep('Configuring frontend scaffolding');++ if ($this->continueInstallation()) {+ $this->laravelUi->install();
Can we do two things?
-
Rename
install()toensureInstalled()to make it a bit clearer? -
Add a method named something like
installFrontend($frontend)?
$this->laravelUi->installFrontend(config('lambo.store.frontend'));
- In the
installFrontendmethod, if it fails, throw an exception with this message:
throw new LamboException(sprintf("Installation of %s UI scaffolding did not complete successfully.", config('lambo.store.frontend')));
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\Shell\Shell;+use App\Shell;+use Illuminate\Support\Facades\Config; class ConfigureFrontendFramework { use LamboAction; private $shell;- private $laravelUi;+ private $availableFrontends; public function __construct(Shell $shell, LaravelUi $laravelUi) { $this->shell = $shell; $this->laravelUi = $laravelUi; } - public function __invoke()+ public function __invoke(array $availableFrontends) {- if (! config('lambo.store.frontend')) {+ $this->availableFrontends = $availableFrontends;++ if (! Config::get('lambo.store.frontend')) { return; } - $this->laravelUi->install();+ app('console-writer')->logStep('Configuring frontend scaffolding');++ if ($this->continueInstallation()) {+ $this->laravelUi->install();++ $process = $this->shell->execInProject(sprintf("php artisan ui %s%s", config('lambo.store.frontend'), $this->extraOptions()));++ $this->abortIf(! $process->isSuccessful(), sprintf("Installation of %s UI scaffolding did not complete successfully.", config('lambo.store.frontend')), $process);++ app('console-writer')->success(config('lambo.store.frontend') . ' ui scaffolding installed.');+ }+ }++ private function continueInstallation(): bool
private function choseValidFrontend(): bool
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\Shell\Shell;+use App\Shell;+use Illuminate\Support\Facades\Config; class ConfigureFrontendFramework { use LamboAction; private $shell;- private $laravelUi;+ private $availableFrontends; public function __construct(Shell $shell, LaravelUi $laravelUi) { $this->shell = $shell; $this->laravelUi = $laravelUi; } - public function __invoke()+ public function __invoke(array $availableFrontends) {- if (! config('lambo.store.frontend')) {+ $this->availableFrontends = $availableFrontends;++ if (! Config::get('lambo.store.frontend')) { return; } - $this->laravelUi->install();+ app('console-writer')->logStep('Configuring frontend scaffolding');++ if ($this->continueInstallation()) {+ $this->laravelUi->install();++ $process = $this->shell->execInProject(sprintf("php artisan ui %s%s", config('lambo.store.frontend'), $this->extraOptions()));++ $this->abortIf(! $process->isSuccessful(), sprintf("Installation of %s UI scaffolding did not complete successfully.", config('lambo.store.frontend')), $process);++ app('console-writer')->success(config('lambo.store.frontend') . ' ui scaffolding installed.');+ }+ }++ private function continueInstallation(): bool+ {+ if ($this->validFrontend()) {+ return true;+ }++ $configuredFrontend = $this->chooseFrontend();+ if ($configuredFrontend !== 'none') {+ Config::set('lambo.store.frontend', $configuredFrontend);+ app('console-writer')->success("Using {$configuredFrontend} ui scaffolding.", ' OK ');+ return true;+ }++ app('console-writer')->success('No frontend framework will be installed.', ' OK ');+ return false;+ } - $this->logStep('Configuring frontend scaffolding');+ private function chooseFrontend()+ {+ $this->availableFrontends[] = 'none';+ $message = sprintf("<fg=yellow>I can't install %s</>. Please choose one of the following options", Config::get('lambo.store.frontend'));+ $preselectedChoice = count($this->availableFrontends) - 1; - $process = $this->shell->execInProject('php artisan ui ' . config('lambo.store.frontend'));+ return app('console')->choice($message, $this->availableFrontends, $preselectedChoice);+ } - $this->abortIf(! $process->isSuccessful(), "Installation of UI scaffolding did not complete successfully.", $process);+ private function extraOptions()+ {+ return config('lambo.store.with_output') ? '' : ' --quiet';+ } - $this->info('UI scaffolding has been set to ' . config('lambo.store.frontend'));+ private function validFrontend()
private function frontendIsValid()
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\Shell\Shell;+use App\Shell;+use Illuminate\Support\Facades\Config; class ConfigureFrontendFramework { use LamboAction; private $shell;- private $laravelUi;+ private $availableFrontends; public function __construct(Shell $shell, LaravelUi $laravelUi) { $this->shell = $shell; $this->laravelUi = $laravelUi; } - public function __invoke()+ public function __invoke(array $availableFrontends) {- if (! config('lambo.store.frontend')) {+ $this->availableFrontends = $availableFrontends;
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\Shell\Shell;+use App\Shell;+use Illuminate\Support\Facades\Config; class ConfigureFrontendFramework { use LamboAction; private $shell;- private $laravelUi;+ private $availableFrontends; public function __construct(Shell $shell, LaravelUi $laravelUi) { $this->shell = $shell; $this->laravelUi = $laravelUi; } - public function __invoke()+ public function __invoke(array $availableFrontends)
public function __invoke()
comment created time in 2 days
Pull request review commenttightenco/lambo
namespace App\Actions; -use App\Shell\Shell;+use App\Shell;+use Illuminate\Support\Facades\Config; class ConfigureFrontendFramework { use LamboAction; private $shell;- private $laravelUi;+ private $availableFrontends;
private $availableFrontends = ['bootstrap', 'react', 'vue'];
comment created time in 2 days
Pull request review commenttightenco/lambo
public function __invoke() $this->silentDevScript->add(); - $this->logStep('Compiling project assets');+ app('console-writer')->logStep('Compiling project assets');
Could we instead:
- Create a
ConsoleWriterclass - Inject that class into the
__invoke()method - Update all calls to our actions to happen via the IOC, which I think is something like this?
app()->call(app(ConsoleWriter::class), '__invoke');
comment created time in 2 days
Pull request review commenttightenco/lambo
+<?php++namespace App\Commands;++use LaravelZero\Framework\Commands\Command;+use Symfony\Component\Console\Input\InputInterface;+use Symfony\Component\Console\Output\OutputInterface;+use Symfony\Component\Console\Style\SymfonyStyle;++abstract class LamboCommand extends Command+{+ public function handle()+ {+ app()->bind('console', function () {+ return $this;+ });++ app()->singleton('console-writer', function () {+ return new class($this->input, $this->output) {
Can we re-create this as an actual class?
comment created time in 2 days
issue openedmattstauffer/dotfiles
Consider re-creating with Dotbot later
https://github.com/anishathalye/dotbot
created time in 6 days
pull request commenttightenco/overload
implement further type normalization logic
https://github.com/tightenco/overload/releases/tag/v0.1.2
comment created time in 8 days
push eventtightenco/overload
commit sha e585fe3b893418faeb2ce34cdc2b22890421b4e0
implement further type normalization logic account for variables of type bool and float in the normalizeTypes() method of the OverloadableMethodCadidate class - add tests for these normalizations
commit sha 478d6f4107e2ef0227cee89ffbd2fd2db729c11a
Update src/OverloadedMethodCandidate.php Co-authored-by: Matt Stauffer <[email protected]>
commit sha c221a48d5a93c6e7a595122605904c7c899d7fde
Merge pull request #7 from shaneburns/bugfix-typeNormalizations implement further type normalization logic
push time in 8 days
PR merged tightenco/overload
account for variables of type bool and float in the normalizeTypes() method of the OverloadableMethodCadidate class - add/adjusts tests for these normalizations
pr closed time in 8 days
pull request commenttightenco/overload
implement further type normalization logic
@shaneburns Nope, you're good. Thanks!
comment created time in 8 days
push eventtightenco/onramp
commit sha a5a7a0c3e03f64c1ba6b36d083b57fde7e5a4b62
Prep tests for PHPUnit 9
commit sha 643a3aea727267bc01ab315bae9343d61153412a
Fix unnecessary DB query for count on related resources on glossary page
commit sha 2a7c2f0018c3286eea386ec44439fb5673462f2c
Refactor Resource model
commit sha eda7bd2aa56c0e21886316016330197e509b1220
Order glossary terms alphabetically
push time in 8 days
issue commenttightenco/jigsaw
Confused about build_production and .gitignore
@EricBusch Jacob will likely be able to help you better than me, but I see this line:
Could not find Jigsaw; please install it via Composer.
Do you have Jigsaw in your composer.json? Or are you relying just on running it with it globally installed? If so, I'd add it to your composer.json so it's available to the NPM script.
comment created time in 9 days
delete branch tightenco/gistlog
delete branch : dependabot/npm_and_yarn/lodash-4.17.19
delete time in 9 days
push eventtightenco/gistlog
commit sha 83a43bec78a14e1ce689b731f791acdcac2885a4
Bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]>
commit sha 7c4f7910eb007d364f71558aefbb02007bb90ae7
Merge pull request #170 from tightenco/dependabot/npm_and_yarn/lodash-4.17.19 Bump lodash from 4.17.15 to 4.17.19
push time in 9 days
PR merged tightenco/gistlog
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~mathias">mathias</a>, a new releaser for lodash since your current version.</p> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 9 days
push eventtightenco/onramp
commit sha 4b9f590bca298d41b8b85f500bc3a384a17b184b
Update home page text; add NPM to travis
push time in 9 days
Pull request review commenttightenco/overload
implement further type normalization logic
private function mapArguments($reflectionFunction) private function normalizeTypes($types) { return array_map(function ($type) {- return $type == 'int' ? 'integer' : $type;+ return $type == 'int' ? 'integer' : ($type == 'bool' ? 'boolean' : ($type == 'float' ? 'double' : $type));
$types = ['int' => 'integer', 'bool' => 'boolean', 'float' => 'double'];
return array_key_exists($type, $types) ? $types[$type] : $type;
comment created time in 10 days
pull request commentmattstauffer/Torch
chore: bump all laravel 6.0 components to 7.0
@StephaneBour I can't thank you enough for your hard work on this!!
comment created time in 10 days
push eventmattstauffer/Torch
commit sha fe08ffdc3a5dbbf489ab07dddf69d79ee7747be6
chore: bump `illuminate/console` from 6.0 to 7.0
commit sha 121afed2998fb9bc34aeeff2b6ad1e2ae07a2d40
chore(cache): bump `illuminate` from 6.0 to 7.0
commit sha 8a946b123e39878a684e0350ed7d942bd5ee695f
chore(cache): bump `whoops`
commit sha 2af01ad76ec730a6460dbdce9f2332465225d7c4
chore(cache): bump `predis/predis` from 1.0 to 1.1
commit sha 6008c2f352fff44e99df9908860592a9b02dc004
chore(cache): add parentheses
commit sha 16a5cac4230a0eb6dcf06ff089ebd8508c298aac
chore(config): bump `illuminate/config` from 6.0 to 7.0
commit sha 69afe5ba18406109e8c1a517c38cfefa0718dcb2
chore(config): bump `filp/whoops` from 2.1.10 to 2.3.4
commit sha 91698c35ad7ae983516464c46664d0a4ea6aaa24
chore(container): bump `illuminate/container` from 6.0 yo 7.0
commit sha 30a2084510e919598c7b4490b69c1bad4c0cdffd
chore(container): bump slim from 2 to 3 and whoops
commit sha 31d1e261af6fecdbe29fc54a6f7ff8526d611a1f
chore(database): bump `illuminate/database` from 6.0 to 7.0
commit sha e4f5b43a5551cc5a3b92845e96d7cbec07f2ce0d
chore(database): bump `slim/slim` from 2 to 3 and whoops
commit sha 2661d9e4f4ba05b0f52fe2770b3058100a43f58f
feat(database): use sqlite driver by default
commit sha 117af396fa2389f65830f9e5f33c42501f574a6c
chore(encryption): bump `illuminate/encryption` from 6.0 to 7.0
commit sha 9ac4a997608e846effe25f5a33db8dc0e8148cd4
chore(encryption): bump `filp/whoops` from 2.1.10 to 2.3.2
commit sha 967057414d976b4234e4d94a00c359fe5ab29fc7
chore(events): bump `illuminate/events` from 6.0 to 7.0
commit sha 98920945b43b987b8be7c8a74a0bb165794c559f
chore(log): bump `illuminate/log` from 6.0 to 7.0
commit sha f2aaa8c9688a48b658fee9a133757332d5272018
chore(log): bump `filp/whoops` from 2.1.10 to 2.3.2
commit sha e96a90010245d02a87306481e0de3d306ac94565
chore(middleware): bump illuminate routing and events from 6.0 to 7.0
commit sha 17bb7b67e0676d8fc4b4f607197bd91296fabb2d
chore(pagination): bump illuminate components from 6.0 to 7.0
commit sha 08c0b810efc80ed162e97242f72dbab600b1507d
chore(pagination): bump slim from 2 to 3 and whoops
push time in 10 days
push eventtightenco/onramp
commit sha 419c35f05c21244fd919b87807d5bea285c05b7b
Change welcome screen text
push time in 10 days
delete branch tightenco/tallstack
delete branch : dependabot/npm_and_yarn/elliptic-6.5.3
delete time in 10 days
push eventtightenco/tallstack
commit sha e3215b509f31ec1ca74ad1413f7cd16d4b108a5b
Bump elliptic from 6.5.2 to 6.5.3 Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.2 to 6.5.3. - [Release notes](https://github.com/indutny/elliptic/releases) - [Commits](https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.3) Signed-off-by: dependabot[bot] <[email protected]>
commit sha a44a49b83c755ed41ce44fe79adf33a401114055
Merge pull request #9 from tightenco/dependabot/npm_and_yarn/elliptic-6.5.3 Bump elliptic from 6.5.2 to 6.5.3
push time in 10 days
PR merged tightenco/tallstack
Bumps elliptic from 6.5.2 to 6.5.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indutny/elliptic/commit/8647803dc3d90506aa03021737f7b061ba959ae1"><code>8647803</code></a> 6.5.3</li> <li><a href="https://github.com/indutny/elliptic/commit/856fe4d99fe7b6200556e6400b3bf585b1721bec"><code>856fe4d</code></a> signature: prevent malleability and overflows</li> <li>See full diff in <a href="https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.3">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 10 days
push eventmattstauffer/simplepodcastsite
commit sha c25ab560718e91201a1655595bf95f2bd7d29edf
Upgrade RSS, move to /episodes/{id} routes
push time in 10 days
issue closedtightenco/collect
illuminate/collections exists: what now?
Now illuminate/collections exists. So far looks like it's a drop-in replacement for this package. illuminate/collections even solves some problems I have with this package.
According to the Readme:
One day Collection may be extracted from illuminate/support to a new package. If so, we'll deprecate this package and point to the core version.
closed time in 10 days
austinprayissue commenttightenco/collect
illuminate/collections exists: what now?
Thanks @austinpray! Closing as a duplicate of https://github.com/tightenco/collect/issues/217
comment created time in 10 days
pull request commentlaravel/laravel
[8.x] Use Pest as the default testing framework
I am down-voting this because:
As much as I love Pest and the work you're doing there, I am not yet convinced that it should replace PHPUnit and therefore create additional (mental) overhead for people that are especially new to Laravel.
The main question to me is: Is the Pest ecosystem mature enough to make the switch on the framework level?
As @mpociot points out in the above quote, and many others have in their comments, Pest is a great idea, but it's not ready. It literally doesn't even have a major release yet and it's only been in development for a few months. I love @nunomaduro and I love what he's doing with Pest but I don't think this is the right time.
comment created time in 10 days
delete branch tightenco/tallstack
delete branch : dependabot/npm_and_yarn/lodash-4.17.19
delete time in 12 days
push eventtightenco/tallstack
commit sha 7aad17f1bb4bc49c03046dc52c5dc2ebe1ec368d
Bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]>
commit sha 89c2ea60ffb8835609bb765ac83298796485972b
Merge pull request #8 from tightenco/dependabot/npm_and_yarn/lodash-4.17.19 Bump lodash from 4.17.15 to 4.17.19
push time in 12 days
PR merged tightenco/tallstack
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~mathias">mathias</a>, a new releaser for lodash since your current version.</p> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 12 days
issue closedlaravel/valet
The process has been signaled with signal "6".
Clear description of your problem
The process has been signaled with signal "6".
When running valet install
Expected behavior
Success message when running valet install
Current behavior
Here is the full output:
Stopping nginx...
Installing nginx configuration...
Installing nginx directory...
Updating PHP configuration...
Restarting php...
Updating Dnsmasq configuration...
Restarting dnsmasq...
Valet is configured to serve for TLD [.test]
In Process.php line 424:
The process has been signaled with signal "6".
install
Steps to Reproduce
- Run
valet install
Output of these steps
<!-- Please, for any steps that are helpful, let us know what happened in response to them -->
Possible solution
<!-- This is not required, but if you have a suggestion for the fix, we're open -->
Diagnosis
<!-- Please upgrade to Valet 2.10 or greater, then run "valet diagnose", and then paste the output here. -->
closed time in 12 days
davinaleongdelete branch tightenco/omgphp
delete branch : dependabot/npm_and_yarn/elliptic-6.5.3
delete time in 12 days
push eventtightenco/omgphp
commit sha 85f5f0d617078b1a76853ef4050b024a40462be7
Bump elliptic from 6.5.0 to 6.5.3 Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.0 to 6.5.3. - [Release notes](https://github.com/indutny/elliptic/releases) - [Commits](https://github.com/indutny/elliptic/compare/v6.5.0...v6.5.3) Signed-off-by: dependabot[bot] <[email protected]>
commit sha eefd95df31c328cc848c7d3e074efa479b5df6c8
Merge pull request #6 from tightenco/dependabot/npm_and_yarn/elliptic-6.5.3 Bump elliptic from 6.5.0 to 6.5.3
push time in 12 days
PR merged tightenco/omgphp
Bumps elliptic from 6.5.0 to 6.5.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indutny/elliptic/commit/8647803dc3d90506aa03021737f7b061ba959ae1"><code>8647803</code></a> 6.5.3</li> <li><a href="https://github.com/indutny/elliptic/commit/856fe4d99fe7b6200556e6400b3bf585b1721bec"><code>856fe4d</code></a> signature: prevent malleability and overflows</li> <li><a href="https://github.com/indutny/elliptic/commit/60489415e545efdfd3010ae74b9726facbf08ca8"><code>6048941</code></a> 6.5.2</li> <li><a href="https://github.com/indutny/elliptic/commit/9984964457c9f8a63b91b01ea103260417eca237"><code>9984964</code></a> package: bump dependencies</li> <li><a href="https://github.com/indutny/elliptic/commit/ec735edde187a43693197f6fa3667ceade751a3a"><code>ec735ed</code></a> utils: leak less information in <code>getNAF()</code></li> <li><a href="https://github.com/indutny/elliptic/commit/71e4e8e2f5b8f0bdbfbe106c72cc9fbc746d3d60"><code>71e4e8e</code></a> 6.5.1</li> <li><a href="https://github.com/indutny/elliptic/commit/7ec66ffa255079260126d87b1762a59ea10de5ea"><code>7ec66ff</code></a> short: add infinity check before multiplying</li> <li><a href="https://github.com/indutny/elliptic/commit/ee7970b92f388e981d694be0436c4c8036b5d36c"><code>ee7970b</code></a> travis: really move on</li> <li><a href="https://github.com/indutny/elliptic/commit/637d0216b58de7edee4f3eb5641295ac323acadb"><code>637d021</code></a> travis: move on</li> <li><a href="https://github.com/indutny/elliptic/commit/5ed0babb6467cd8575a9218265473fda926d9d42"><code>5ed0bab</code></a> package: update deps</li> <li>See full diff in <a href="https://github.com/indutny/elliptic/compare/v6.5.0...v6.5.3">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 12 days
delete branch tightenco/consoles
delete branch : dependabot/npm_and_yarn/elliptic-6.5.3
delete time in 12 days
push eventtightenco/consoles
commit sha c0c1ab3706474a1b83d1957bf543fa831380bd16
Bump elliptic from 6.5.2 to 6.5.3 Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.2 to 6.5.3. - [Release notes](https://github.com/indutny/elliptic/releases) - [Commits](https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.3) Signed-off-by: dependabot[bot] <[email protected]>
commit sha 18177c81163ae7814369de2a7fa97d6d6054758b
Merge pull request #22 from tightenco/dependabot/npm_and_yarn/elliptic-6.5.3 Bump elliptic from 6.5.2 to 6.5.3
push time in 12 days
PR merged tightenco/consoles
Bumps elliptic from 6.5.2 to 6.5.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indutny/elliptic/commit/8647803dc3d90506aa03021737f7b061ba959ae1"><code>8647803</code></a> 6.5.3</li> <li><a href="https://github.com/indutny/elliptic/commit/856fe4d99fe7b6200556e6400b3bf585b1721bec"><code>856fe4d</code></a> signature: prevent malleability and overflows</li> <li>See full diff in <a href="https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.3">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 12 days
pull request commenttightenco/novapackages
@marcusmoore it's so weird, because at least that commit doesn't change any source files. I think I still want to make sure i know WHICH change to our source files made it go away--I'll try to dig into that whole PR later.
comment created time in 14 days
pull request commenttightenco/collect
@guilhermehubner Collect only mirrors the Illuminate collections, so we can't diverge.
https://github.com/laravel/framework/blob/7.x/src/Illuminate/Support/Traits/EnumeratesValues.php#L809
Please feel free to pull request to the framework!
comment created time in 14 days
PR closed tightenco/collect
This function call groupBy which accept array|callable|string so this one must accept as well.
pr closed time in 14 days
push eventmattstauffer/simplepodcastsite
commit sha c37d912c515002f7558379a784584edb173209c8
Fix public storage git ignore
push time in 14 days
push eventmattstauffer/simplepodcastsite
commit sha 40f96ad25bc74b2a9de570ed9d216757412bb97b
Drop briefs reference
push time in 14 days
push eventmattstauffer/simplepodcastsite
commit sha adbb6a00e9c9f7aeac273ade27f49432b3986067
Update Vinelab so we can use enclosure; temporarily mod their RSS class until they release the fix
push time in 14 days
PR opened Vinelab/RSS
The doc block and return type suggest it's returning an ArticlesCollection but in reality it's returning the output of parse(), which is returning an instance of the FeedInterface, so any usage of this method just returns an exception.
Thanks for the great library!
pr created time in 14 days
push eventmattstauffer/RSS
commit sha 8a8ea02ad5916920792835b43947a785fdc7ccc9
Fix return type on Rss::fetch The doc block and return type suggest it's returning an ArticlesCollection but in reality it's returning the output of `parse()`, which is returning an instance of the `FeedInterface`, so any usage of this method just returns an exception.
push time in 14 days
delete branch tightenco/gistlog
delete branch : dependabot/npm_and_yarn/elliptic-6.5.3
delete time in 14 days
push eventtightenco/gistlog
commit sha 3b2abdbbd30f8291966b878a5b80583bca94c571
Bump elliptic from 6.5.2 to 6.5.3 Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.2 to 6.5.3. - [Release notes](https://github.com/indutny/elliptic/releases) - [Commits](https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.3) Signed-off-by: dependabot[bot] <[email protected]>
commit sha f6a9d5305732e0d8020ae29932cdf8e1b3415773
Merge pull request #171 from tightenco/dependabot/npm_and_yarn/elliptic-6.5.3 Bump elliptic from 6.5.2 to 6.5.3
push time in 14 days
PR merged tightenco/gistlog
Bumps elliptic from 6.5.2 to 6.5.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indutny/elliptic/commit/8647803dc3d90506aa03021737f7b061ba959ae1"><code>8647803</code></a> 6.5.3</li> <li><a href="https://github.com/indutny/elliptic/commit/856fe4d99fe7b6200556e6400b3bf585b1721bec"><code>856fe4d</code></a> signature: prevent malleability and overflows</li> <li>See full diff in <a href="https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.3">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 14 days
pull request commenttightenco/onramp
Allow users to update their information via Profile page
Great work @andrewmile and @marcusmoore!
comment created time in 14 days
push eventtightenco/onramp
commit sha 5f218b7de745f1fbb25d59c482897c3d66e3e7d3
Add a profile page to update name and email
commit sha e6d02d13a775f17361c082bca66c191e7895c58e
Use Gravatar for user profile pictures
commit sha e0e4510742a8f6d6b542cb0a83e0154fee7c0a7d
Merge pull request #254 from tightenco/am/profile-page Allow users to update their information via Profile page
push time in 14 days
PR merged tightenco/onramp
This PR addresses #220 by:
- allowing users to update their name and email address via a new profile page (
/profile) - uses Gravatar for displaying user profile images. With @mattstauffer's blessing, we're going to hold off on allowing users to upload their own images since the site does not currently have public facing profiles.
The following blade components were extracted in the process:
<x-button.primary>: button that defaults to the type ofsubmit<x-form.heading>: displaysAccount Settingsin the screenshot below<x-form.section>: wraps a section of a form with a border. Can optionally pass in a description<x-input.text>: simple text input
Profile Page
| Menu | ![]() |
| Page | ![]() |
Gravatar Images
| Gravatar has image for user | ![]() |
| Gravatar does not have image for user | ![]() |
Components
Form section with <x-slot name="description"></x-slot> provided |
![]() |
Closes #220
pr closed time in 14 days
issue closedtightenco/onramp
This should be an entirely new page. We can create a new link for it within the user menu above "Preferences".
closed time in 14 days
TammyTeepush eventmattstauffer/dotfiles
commit sha 2484ec61c7a91703a6c98aa3086782b0819d6e04
Build mas app
push time in 15 days
push eventmattstauffer/dotfiles
commit sha ef6e335e14f5d8e1a581a667af0ea3cc3cb34be9
wip brew install, add vim file
push time in 15 days
push eventmattstauffer/dotfiles
commit sha d35381e8831b945bb7721e4aef85ea52287bf615
Title function
push time in 15 days
push eventmattstauffer/dotfiles
commit sha c6d0943a01be9df6ccf0b34e73f21c6bece252c5
Finish sym links
push time in 15 days
push eventmattstauffer/dotfiles
commit sha 32a98a3e5ea58d7104598166106bcbd935f9f68a
Wip
push time in 15 days
push eventmattstauffer/dotfiles
commit sha 002f08c520ceeef4cc60e1c627d18a5e2c7ef1fc
wip
push time in 15 days
pull request commenttightenco/onramp
Close language and user menus when clicking outside
Thanks @andrewmile!
comment created time in 15 days
push eventtightenco/onramp
commit sha 7c65b4fd4101350ad9b39e52580c8538d63f53f6
Close language and user menus when clicking outside
commit sha f3af5784d1df6fb4ef1eb929862c17ffbef6b253
Merge pull request #253 from tightenco/am/click-outside-menus Close language and user menus when clicking outside
push time in 15 days
PR merged tightenco/onramp
This PR addresses #221 by applying a v-click-outside to the menu-dropdown component. The result is that when clicking outside of either an opened language menu or user menu, the menu will close.
In addition, the language and user menus can no longer be opened at the same time since clicking to open one will close the other.

pr closed time in 15 days
push eventmattstauffer/dotfiles
commit sha fbaa6706e74791122e7608366a310c2f344246ce
Delete swap file
push time in 16 days
push eventmattstauffer/dotfiles
commit sha d98003dd29ab7917073fed577ddb749ae0f8be27
Get real Cask names for all potential apps
push time in 16 days
push eventmattstauffer/simplepodcastsite
commit sha 308d5b0970b5fd29fb139603bd5189199522e4ea
Add storage public link
push time in 16 days
pull request commentsymfony/symfony-docs
@matthewtrask Oops, I duplicated this; https://github.com/symfony/symfony-docs/pull/14006
Yours is probably in the right branch, but mine has more changes. Would you mind reviewing mine and either adding my changes to your PR so I can close mine (assuming you got the right branch and I didn't) and then I can close mine? Thanks!
comment created time in 16 days
PR opened symfony/symfony-docs
The docs say that the prepared command line feature of the Process component uses a "double bracket" syntax; however, in looking at the code example and actually using it, @faxblaster think this should instead say "double quotes".
If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and
masterfor features of unreleased versions).
Apologies, I'm not actually sure in which version this was introduced; I'd be happy to re-pull it against a different branch if necessary. Thanks for understanding my ignorance!
pr created time in 16 days
push eventmattstauffer/symfony-docs
commit sha bcb52883bda368f9d5ef777608da6e49617dd532
Update prepared process documentation The docs said it uses a "double bracket" syntax which I and @faxblaster think should be "double quotes".
push time in 16 days
pull request commenttightenco/novapackages
@marcusmoore Thank you!!
... Do you know why it broke in the first place?!
comment created time in 16 days




