php-hyperclick

Hyperclick provider for PHP. Open file when classname is clicked

Hari KT

67,163

30

1.2.1

MIT

GitHub

This package provides the following services:

php-hyperclick package

Open the class files when you trigger ctrl + mouse left click.

How it works!

Inspired by

This works with the help of some dependencies

Optional dependency:

Making composer an optional dependency

Even though the class finding functionality is relied on composer, you can easily make the necessary change to make composer as optional dependency.

The base working of the package is it tries to find the file /vendor/autoload.php which returns an autoloader object. It assumes the object has a method findFile($class_name).

So if you are not using composer, keep a vendor/autoload.php file on the root of your project.

// vendor/autoload.php

$autoloader = new YourAutoloader();

// Make sure there is findFile method which can return the path to the file when class name is passed

return $autoloader;

Wishes

Known Limitations

Thanks

Special Thanks to

and to everyone who have helped knowingly/unknowingly to make this happen.