juddling / phpstorm-url
Installs: 954
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/juddling/phpstorm-url
Requires
- illuminate/console: 5.1 - 5.7
- illuminate/support: 5.1 - 5.7
Requires (Dev)
- phpunit/phpunit: ^6.2 | ^7.0
This package is auto-updated.
Last update: 2025-09-29 02:06:24 UTC
README
This package takes a URL, works out the controller and action that the route is bound to, and opens that file at the correct line in PHPStorm
Installation
composer require juddling/phpstorm-url --dev
As this is a developer tool it makes sense to only install it as a dev dependency.
Add Service Provider (<= 5.4)
Be sure to include our service provider in your config/app.php
:
Juddling\PHPStorm\LaunchUrlServiceProvider::class,
Usage
php artisan phpstorm:url http://someproject.localhost/forum/comment/add
We would recommend setting up a bash alias like the following:
alias purl="php artisan phpstorm:url"