Top "Psr-0" questions

PSR-0 describes requirements that must be adhered to for autoloader interoperability in PHP.

What Are the Differences Between PSR-0 and PSR-4?

Recently I've read about namespaces and how they are beneficial. I'm currently creating a project in Laravel and trying to …

php laravel composer-php psr-0 psr-4
Why use a PSR-0 or PSR-4 autoload in composer if classmap is actually faster?

I understand that you can use either a PSR standard to locate files, or tell composer a directory to scan …

php composer-php autoload psr-0 psr-4
composer autoloader psr-0 namespaces

I have create a custom composer package but I am having troubles to set the correct autoload options for it. …

php namespaces composer-php autoload psr-0
Composer Autoloading

I'm currently trying to use PSR-0 autoloading with Composer, but I'm getting the following error: Fatal error: Class 'Twitter\Twitter' …

php composer-php psr-0
Composer/PSR - How to autoload functions?

How can I autoload helper functions (outside of any class)? Can I specify in composer.json some kind of bootstrap …

composer-php autoload psr-0
PHP - most lightweight psr-0 compliant autoloader

I have a tiny application that i need an autoloader for. I could easily use the symfony2 class loader but …

php autoload psr-0
How to use a PHP library with namespacing without Composer as dependency (PSR-0)?

I need to use some PHP libraries with dependencies but I have some restrictions on the webserver of the client. …

php namespaces composer-php autoload psr-0
Composer Not Generating Autoloads For Library

I've set up two projects, an 'init' and a library, which is required by the init. They both have PSR-0 …

php autoload composer-php psr-0 satis