Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
1ab7100e
Commit
1ab7100e
authored
Dec 12, 2013
by
Tobias Munk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated extension documentation; added sections dependencies, versioning and authorization
parent
839650a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
8 deletions
+32
-8
extensions.md
docs/guide/extensions.md
+32
-8
No files found.
docs/guide/extensions.md
View file @
1ab7100e
...
...
@@ -4,12 +4,15 @@ Extending Yii
Code style
----------
-
Extension code style
should
be similar to
[
core framework code style
](
https://github.com/yiisoft/yii2/wiki/Core-framework-code-style
)
.
-
Extension code style
SHOULD
be similar to
[
core framework code style
](
https://github.com/yiisoft/yii2/wiki/Core-framework-code-style
)
.
-
In case of using getter and setter for defining a property it's preferred to use method in extension code rather than property.
-
All classes, methods and properties
should
be documented using phpdoc. Note that you can use markdown and link to properties and methods
-
All classes, methods and properties
SHOULD
be documented using phpdoc. Note that you can use markdown and link to properties and methods
using the following syntax: e.g.
`[[name()]]`
,
`[[name\space\MyClass::name()]]`
.
-
If you're displaying errors to developers do not translate these (i.e. do not use
`\Yii::t()`
). Errors should be
translated only if they're displayed to end users.
-
Extension SHOULD NOT use class prefixes.
-
Extension SHOULD provide a valid PSR-0 autoloading configuration in
`composer.json`
-
Especially for core components (eg.
`WebUser`
) additional functionality SHOULD be implemented using behaviors or traits instead subclassing.
### Namespace and package names
...
...
@@ -19,36 +22,57 @@ using the following syntax: e.g. `[[name()]]`, `[[name\space\MyClass::name()]]`.
-
Extension MAY use a
`yii2-`
prefix in the composer vendor name (URL).
-
Extension MAY use a
`yii2-`
prefix in the repository name (URL).
### Dependencies
-
Additional code, eg. libraries, SHOULD be required in your
`composer.json`
file.
-
Requirements SHOULD NOT include
`dev`
packages without a
`stable`
release.
-
Use appropriate version constraints, eg.
`1.*`
,
`@stable`
for requirements.
### Versioning
-
Extension SHOULD follow the rules of
[
semantic versioning
](
http://semver.org
)
.
-
Use a consistent format for your repository tags, as they are treated as version strings by composer, eg.
`0.2.4`
,
`0.2.5`
,
`0.3.0`
,
`1.0.0`
.
Distribution
------------
-
There should be a
`readme.md`
file clearly describing what extension does in English, its requirements, how to install
and use it. It should be written using markdown. If you want to provide translated readme, name it as
`readme_ru.md`
where
`ru`
is your language code. If extension provides a widget it is a good idea to include some screenshots.
-
It is recommended to host your extensions at
[
Github
](
github.com
)
.
-
Extension MUST be registered at
[
Packagist
](
https://packagist.org
)
.
-
TBD: composer.json
-
It is recommended to host your extensions at github.com.
Working with database
---------------------
-
If extension creates or modifies database schema always use Yii migrations instead of SQL files or custom scripts.
-
Migrations SHOULD be database agnostic.
-
You MUST NOT make use of active-record model classes in your migrations.
Assets
------
TBD
-
Asset files MUST be registered through Bundles.
Events
------
TBD
-
Extension SHOULD make use of the event system, in favor of providing too complex configuration options.
i18n
----
TBD
-
Extension SHOULD provide at least one message catalogue with either source or target language in English.
-
Extension MAY provide a configuration for creating message catalogues.
Authorization
-------------
-
Auth-items for controllers SHOULD be named after the following format
`vendor\ext\controller\action`
.
-
Auth-items names may be shortened using an asterisk, eg.
`vendor\ext\*`
Testing your extension
----------------------
TBD
\ No newline at end of file
-
Extension SHOULD be testable with
*Codeception*
.
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment