chore(deps): bump psy/psysh from 0.12.8 to 0.12.13
Bumps psy/psysh from 0.12.8 to 0.12.13.
Release notes
Sourced from psy/psysh's releases.
PsySH v0.12.13
... pushing the limits of what we can plausibly put in a point release.
Autoload warming
Added opt-in autoload warming to improve tab completion and command support. When enabled, PsySH pre-loads classes at startup, making them available to
ls,doc,show, and tab completion.// Enable with defaults (project classes only) 'warmAutoload' => true,// Advanced configuration 'warmAutoload' => [ 'includeTests' => true, 'excludeNamespaces' => ['App\Tests'], 'includeVendorNamespaces' => ['Symfony', 'Doctrine'], ],
Custom warmers can be implemented via
AutoloadWarmerInterface. Fixes #650Implicit use statements
Auto-adds
usestatements when you reference a class by its short name (and there's exactly one match in configured namespaces).'implicitUse' => [ 'includeNamespaces' => ['App\'], 'excludeNamespaces' => ['App\Legacy\'], ],Works great with autoload warming to make class references feel natural.
Namespace-aware commands
doc,show, andlscommands now resolve class names using the current namespace and use statements, just like code execution does.SIGINT handling
Hitting ctrl-c during long-running code now interrupts execution and returns to the prompt instead of exiting the shell entirely. Works with or without process forking (requires pcntl and posix support). Fixes #154
Exit status support
PsySH now properly handles exit status codes! Use
exit(42)for non-zero status codes orexit('message')to print before exiting. Also exits with non-zero status on unrecoverable errors.Clickable documentation links
Class names, functions, interfaces, constants, and more in
ls,doc, andshowcommands are now clickable links to php.net (requires Symfony 4.3+, PsySH manual installed, and OSC 8 compatible terminal).
... (truncated)
Commits
d86c2f7Merge branch 'release/0.12.13'03b12f5Bump to v0.12.13baf31bfLink signatures and docs to php.net.a9b2e28Ensuremake smoketestruns against an up-to-date build.58c8af0It's the little things.d1ec6c2Add exit status to smoketest.87a1fdeAdd exit status support to PsySH.15bd6ffAdd--infoflag support.8ca6bc8Code formatting1f05b67Actually add the tests I promised in the last commit.- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
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 show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@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)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.