We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have tried to add this class to my project: composer require rachid/pluralizer:dev-main
composer require rachid/pluralizer:dev-main
Then use in a file:
use rachid\pluralizer\Pluralizer; $text = Pluralizer::singularize($text);
This results in an error:
PHP Fatal error: Class 'rachid\pluralizer\Pluralizer' not found in ...
I then ran composer dump-autoload -o to further inspect. The reference in /vendor/composer/autoload_psr4.php exists.
composer dump-autoload -o
'rachid/pluralizer\\' => array($vendorDir . '/rachid/pluralizer/src'),
When we look at /vendor/composer/autoload_classmap.php though, there is no reference to the Pluralizer class.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have tried to add this class to my project:
composer require rachid/pluralizer:dev-main
Then use in a file:
This results in an error:
I then ran
composer dump-autoload -o
to further inspect. The reference in /vendor/composer/autoload_psr4.php exists.When we look at /vendor/composer/autoload_classmap.php though, there is no reference to the Pluralizer class.
The text was updated successfully, but these errors were encountered: