Download the PHP package gnugat/nomo-spaco without Composer
On this page you can find all versions of the php package gnugat/nomo-spaco. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download gnugat/nomo-spaco
More information about gnugat/nomo-spaco
Files in gnugat/nomo-spaco
Package nomo-spaco
Short Description Displays the declared fully qualified classnames of a project
License MIT
Informations about the package nomo-spaco
Nomo Spaco
Finds available Fully Qualified ClassNames (fqcn) in a project.
Caution: this is a prototype, the work is still in progress.
Note: a Fully Qualified ClassName (fqcn) is a classname with its complete namespace (e.g.
Symfony\Component\HttpFoundation\Request
).
Installation
Use Composer to install this library in your projects:
composer require "gnugat/nomo-spaco:~0.4"
Features
Find in path
In order to find all available fully qualified classnames of a PHP project, you need to provide the path to its root:
Caution: the
make_fqcn_repository
function is only available for demonstration purpose. Please use a proper Dependency Injection Container.
Find in path for classname
In order to find all possible fully qualified classnames for a given class, you need to provide the path to the project's root and the classname:
How does this work?
Nowdays PHP projects are powered by Composer, a package manager that installs an autoloads them. This breaks native functions like get_declared_classes.
Nomo Spaco tries to fix this issue in an old fashion way:
- find all PHP files in a project
- for each file, find the namespace using PHP tokens
- for each file, find class names using PHP tokens
Demonstration
You can display the list of all fully qualified classnames of a project using:
php ./test/findAll.php <projectRoot>
You can display the list of all fully qualified classnames of a project's class using:
php ./test/findOne.php <projectRoot> <classname>