exodus4d / pathfinder

Mapping tool for EVE ONLINE

Home Page:https://www.pathfinder-w.space

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Composer issue?

Netmonster opened this issue · comments

Hello,

I've been noticing a strange issue with composer and pathfinder. When using compose 1.10.x or 2.x I get the following error when running composer install. This doesn't happen when using a 1.9.x version. I see a double "r" in the controller.

Any one else experiencing this?

Class Exodus4D\Pathfinder\Controller\Controller located in ./app/Controller/Controllerr.php does not comply with psr-4 autoloading standard. Skipping.
Class Exodus4D\Pathfinder\Model\Universe\AbstractUniverseModel located in ./app/Model/Universe/abstractuniversemodel.php does not comply with psr-4 autoloading standard. Skipping.
Class Exodus4D\Pathfinder\Model\AbstractModel located in ./app/Model/AbstractModell.php does not comply with psr-4 autoloading standard. Skipping.
Class Exodus4D\Pathfinder\Model\Pathfinder\AbstractPathfinderModel located in ./app/Model/Pathfinder/AbstractPathfinderModell.php does not comply with psr-4 autoloading standard. Skipping.
Class Exodus4D\Pathfinder\Db\Sql\Mysql\TableModifier located in ./app/Db/Sql/Mysql/tablemodifier.php does not comply with psr-4 autoloading standard. Skipping.
Class Exodus4D\Pathfinder\Db\Sql\Mysql\Column located in ./app/Db/Sql/Mysql/tablemodifier.php does not comply with psr-4 autoloading standard. Skipping.
Class Exodus4D\Pathfinder\Db\Sql\Mysql\Constraint located in ./app/Db/Sql/Mysql/tablemodifier.php does not comply with psr-4 autoloading standard. Skipping.

The error is saying the class name and file structure does not match. Easy fix is to rename the files in the directory, then run composer dump-autoload to fix it.

how