问题
I want to make this package to be autoloaded by Composer.
This package is available on Packagist
I realized I need to add something to composer.json
and I need to have a autoload.php
somewhere.
The only class that should be autoloaded is the Webbot.php
.
Can someone give me the step by step breakdown to accomplish this?
Google search results returned are instructions to autoload libraries.
I need instructions on how to write autoloadable libraries.
回答1:
First, you need to have your package structured in either PSR-0 or PSR-4. I haven't started using PSR-4 yet as it has only just been accepted as a standard. Composer will still support PSR-0 for a long time to come.
This means that you MUST follow these rules:
- A fully-qualified namespace and class must have the following
structure
<Vendor Name>\(<Namespace>\)*<Class Name>
- Each namespace must have a top-level namespace ("Vendor Name").
- Each namespace can have as many sub-namespaces as it wishes.
- Each namespace separator is converted to a DIRECTORY_SEPARATOR when loading from the file system.
- Each _ character in the CLASS NAME is converted to a DIRECTORY_SEPARATOR. The _ character has no special meaning in the namespace.
- The fully-qualified namespace and class is suffixed with .php when loading from the file system.
- Alphabetic characters in vendor names, namespaces, and class names may be of any combination of lower case and upper case.
Full FIG guidelines here
This would mean that your package should be laid out in your github repository as follows:
-src
-Simkimsia
-Webbot
-Webbot.php
-composer.json
-license.md
-{any other base level files}
Webbot.php would be in the namespace : Simkimsia\Webbot
as dicated by the directory structure.
Then... As this is a github package, you can add it to your projects composer.json using the repositories property.
{
"name" : 'test',
"description" : 'Test',
"keywords" : ['test'],
"repositories" : [
{
"type": "vcs",
"url": "https://github.com/simkimsia/webbot.git"
}
],
"require" : {
"simkimsia/webbot" : "dev-master"
}
}
The package will be available from Composers autoload and can be instantiated as :
$webbot = new Simkimsia\Webbot\Webbot();
Note:
Composers autoload.php will be available in once you have run composer install
:
/vendor/composer/autoload.php
Just include this file at the start of your PHP script and your classes will be available.
来源:https://stackoverflow.com/questions/21137019/how-to-create-a-library-to-be-used-by-composer-autoloading