Skip to content

Commit b80343b

Browse files
committed
first commit
0 parents  commit b80343b

File tree

6,713 files changed

+1090902
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,713 files changed

+1090902
-0
lines changed

.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory" : "vendor/bower"
3+
}

.gitignore

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
2+
# yii console commands
3+
/yii
4+
/yii_test
5+
/yii_test.bat
6+
7+
# phpstorm project files
8+
.idea
9+
10+
# netbeans project files
11+
nbproject
12+
13+
# zend studio for eclipse project files
14+
.buildpath
15+
.project
16+
.settings
17+
18+
# windows thumbnail cache
19+
Thumbs.db
20+
21+
# composer vendor dir
22+
/vendor
23+
24+
# composer itself is not needed
25+
composer.phar
26+
composer.lock
27+
composer.json
28+
29+
# Mac DS_Store Files
30+
.DS_Store
31+
32+
# phpunit itself is not needed
33+
phpunit.phar
34+
# local phpunit config
35+
/phpunit.xml
36+
37+
# vagrant runtime
38+
/.vagrant
39+
40+
41+
node_modules/
42+
43+
44+
#gulp files
45+
dist/
46+
rev/
47+
rev-manifest.json
48+
backend/web/android/猩猩指.apk
49+
api/config/
50+
api/
51+
wechat/
52+
backend/web/jpush.log

LICENSE.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
The Yii framework is free software. It is released under the terms of
2+
the following BSD License.
3+
4+
Copyright © 2008 by Yii Software LLC (http://www.yiisoft.com)
5+
All rights reserved.
6+
7+
Redistribution and use in source and binary forms, with or without
8+
modification, are permitted provided that the following conditions
9+
are met:
10+
11+
* Redistributions of source code must retain the above copyright
12+
notice, this list of conditions and the following disclaimer.
13+
* Redistributions in binary form must reproduce the above copyright
14+
notice, this list of conditions and the following disclaimer in
15+
the documentation and/or other materials provided with the
16+
distribution.
17+
* Neither the name of Yii Software LLC nor the names of its
18+
contributors may be used to endorse or promote products derived
19+
from this software without specific prior written permission.
20+
21+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25+
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31+
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32+
POSSIBILITY OF SUCH DAMAGE.

README.md

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
Yii 2 Advanced Project Template
2+
===============================
3+
4+
Yii 2 Advanced Project Template is a skeleton [Yii 2](http://www.yiiframework.com/) application best for
5+
developing complex Web applications with multiple tiers.
6+
7+
The template includes three tiers: front end, back end, and console, each of which
8+
is a separate Yii application.
9+
10+
The template is designed to work in a team development environment. It supports
11+
deploying the application in different environments.
12+
13+
Documentation is at [docs/guide/README.md](docs/guide/README.md).
14+
15+
[![Latest Stable Version](https://poser.pugx.org/yiisoft/yii2-app-advanced/v/stable.png)](https://packagist.org/packages/yiisoft/yii2-app-advanced)
16+
[![Total Downloads](https://poser.pugx.org/yiisoft/yii2-app-advanced/downloads.png)](https://packagist.org/packages/yiisoft/yii2-app-advanced)
17+
[![Build Status](https://travis-ci.org/yiisoft/yii2-app-advanced.svg?branch=master)](https://travis-ci.org/yiisoft/yii2-app-advanced)
18+
19+
DIRECTORY STRUCTURE
20+
-------------------
21+
22+
```
23+
common
24+
config/ contains shared configurations
25+
mail/ contains view files for e-mails
26+
models/ contains model classes used in both backend and frontend
27+
tests/ contains tests for common classes
28+
console
29+
config/ contains console configurations
30+
controllers/ contains console controllers (commands)
31+
migrations/ contains database migrations
32+
models/ contains console-specific model classes
33+
runtime/ contains files generated during runtime
34+
backend
35+
assets/ contains application assets such as JavaScript and CSS
36+
config/ contains backend configurations
37+
controllers/ contains Web controller classes
38+
models/ contains backend-specific model classes
39+
runtime/ contains files generated during runtime
40+
tests/ contains tests for backend application
41+
views/ contains view files for the Web application
42+
web/ contains the entry script and Web resources
43+
frontend
44+
assets/ contains application assets such as JavaScript and CSS
45+
config/ contains frontend configurations
46+
controllers/ contains Web controller classes
47+
models/ contains frontend-specific model classes
48+
runtime/ contains files generated during runtime
49+
tests/ contains tests for frontend application
50+
views/ contains view files for the Web application
51+
web/ contains the entry script and Web resources
52+
widgets/ contains frontend widgets
53+
vendor/ contains dependent 3rd-party packages
54+
environments/ contains environment-based overrides
55+
```

0 commit comments

Comments
 (0)