preparing extension for publishing wip

This commit is contained in:
resurtm
2016-12-20 12:41:26 +06:00
parent 4c6df4bcc7
commit 02a02ef147
11 changed files with 435 additions and 847 deletions

12
,editorconfig Normal file
View File

@ -0,0 +1,12 @@
root = true
[*]
trim_trailing_whitespace = true
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
[*.md]
trim_trailing_whitespace = false

0
.gitattributes vendored Normal file
View File

0
.github/CONTRIBUTING.md vendored Normal file
View File

0
.github/ISSUE_TEMPLATE.md vendored Normal file
View File

0
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View File

0
.travis.yml Normal file
View File

0
CHANGELOG.md Normal file
View File

28
LICENSE.md Normal file
View File

@ -0,0 +1,28 @@
# The BSD License (BSD)
Copyright (c) 2013-2015, 2amigOS! Consulting Group LLC.
> Redistribution and use in source and binary forms, with or without modification,
> are permitted provided that the following conditions are met:
>
> Redistributions of source code must retain the above copyright notice, this
> list of conditions and the following disclaimer.
>
> Redistributions in binary form must reproduce the above copyright notice, this
> list of conditions and the following disclaimer in the documentation and/or
> other materials provided with the distribution.
>
> Neither the name of 2amigOS! Consulting Group, LLC. nor the names of its
> contributors may be used to endorse or promote products derived from
> this software without specific prior written permission.
>
>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
>ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
>WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
>DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
>ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
>(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
>LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
>ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
>(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
>SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0
UPGRADE.md Normal file
View File

View File

@ -1,41 +1,71 @@
{ {
"name": "vendor_name/package_name", "name": "2amigos/yii2-usuario",
"description": "description_text", "description": "Highly customizable and extensible user management, authentication, and authorization Yii2 extension",
"license": "proprietary", "type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/2amigos/yii2-usuario/issues?state=open",
"forum": "https://gitter.im/2amigos/yii2-usuario",
"source": "https://github.com/2amigos/yii2-usuario"
},
"keywords": [
"2amigos",
"yii",
"yii2",
"yii 2",
"yii framework",
"user",
"access",
"rbac",
"acl",
"backend",
"yii2-user",
"yii2 user",
"user management"
],
"authors": [ "authors": [
{ {
"name": "author's name", "name": "2amigOS! Consulting Group",
"email": "email@example.com" "email": "hola@2amigos.us",
"homepage": "http://2amigos.us",
"role": "Developer"
},
{
"name": "Antonio Ramirez Cobos",
"email": "hola@2amigos.us",
"homepage": "http://2amigos.us",
"role": "Developer"
},
{
"name": "Timur Ruziev",
"email": "resurtm@gmail.com",
"homepage": "http://resurtm.com",
"role": "Developer"
} }
], ],
"require": { "require": {
"php": ">=5.5" "php": ">=5.5",
"yiisoft/yii2": "~2.0.0"
}, },
"require-dev": { "require-dev": {
"squizlabs/php_codesniffer": "^2.7", "squizlabs/php_codesniffer": "^2.7",
"fabpot/php-cs-fixer": "^1.12", "friendsofphp/php-cs-fixer": "^2.0",
"phpmd/phpmd": "^2.4", "phpmd/phpmd": "^2.4",
"dektrium/yii2-user": "^0.9.9",
"dektrium/yii2-rbac": "^0.3.0",
"yiisoft/yii2-codeception": "^2.0.0", "yiisoft/yii2-codeception": "^2.0.0",
"codeception/specify": "^0.4.3", "codeception/specify": "^0.4.3",
"codeception/verify": "^0.3.1" "codeception/verify": "^0.3.1"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Da\\": [ "Da\\": "./lib"
"./lib",
"./tests/lib"
]
} }
}, },
"autoload-dev": { "autoload-dev": {
"psr-4": { "psr-4": {
"Da\\": [ "Da\\": "./lib"
"./lib",
"./tests/lib"
]
} }
}, },
"minimum-stability": "dev" "extra": {
"bootstrap": "Da\\User\\Bootstrap"
}
} }

1176
composer.lock generated

File diff suppressed because it is too large Load Diff