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
759c303a
Commit
759c303a
authored
May 24, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed apps/bootstrap to apps/basic.
parent
c401bb49
Hide whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
12 additions
and
12 deletions
+12
-12
README.md
README.md
+1
-1
LICENSE.md
apps/basic/LICENSE.md
+0
-0
README.md
apps/basic/README.md
+8
-8
.gitignore
apps/basic/assets/.gitignore
+0
-0
HelloController.php
apps/basic/commands/HelloController.php
+0
-0
composer.json
apps/basic/composer.json
+3
-3
assets.php
apps/basic/config/assets.php
+0
-0
console.php
apps/basic/config/console.php
+0
-0
main.php
apps/basic/config/main.php
+0
-0
params.php
apps/basic/config/params.php
+0
-0
SiteController.php
apps/basic/controllers/SiteController.php
+0
-0
ContactForm.php
apps/basic/models/ContactForm.php
+0
-0
LoginForm.php
apps/basic/models/LoginForm.php
+0
-0
User.php
apps/basic/models/User.php
+0
-0
requirements.php
apps/basic/requirements.php
+0
-0
.gitignore
apps/basic/runtime/.gitignore
+0
-0
.gitignore
apps/basic/vendor/.gitignore
+0
-0
main.php
apps/basic/views/layouts/main.php
+0
-0
about.php
apps/basic/views/site/about.php
+0
-0
contact.php
apps/basic/views/site/contact.php
+0
-0
index.php
apps/basic/views/site/index.php
+0
-0
login.php
apps/basic/views/site/login.php
+0
-0
.gitignore
apps/basic/www/assets/.gitignore
+0
-0
site.css
apps/basic/www/css/site.css
+0
-0
index.php
apps/basic/www/index.php
+0
-0
yii
apps/basic/yii
+0
-0
yii.bat
apps/basic/yii.bat
+0
-0
No files found.
README.md
View file @
759c303a
...
@@ -16,7 +16,7 @@ DIRECTORY STRUCTURE
...
@@ -16,7 +16,7 @@ DIRECTORY STRUCTURE
-------------------
-------------------
apps/ ready-to-use Web apps built on Yii 2
apps/ ready-to-use Web apps built on Yii 2
b
ootstrap/
a simple app supporting user login and contact page
b
asic/
a simple app supporting user login and contact page
build/ internally used build tools
build/ internally used build tools
docs/ documentation
docs/ documentation
yii/ framework source files
yii/ framework source files
...
...
apps/b
ootstrap
/LICENSE.md
→
apps/b
asic
/LICENSE.md
View file @
759c303a
File moved
apps/b
ootstrap
/README.md
→
apps/b
asic
/README.md
View file @
759c303a
Yii 2 B
ootstrap Application
Yii 2 B
asic Application Template
===========================
===========================
=====
**NOTE**
Yii 2 and the relevant applications and extensions are still under heavy
**NOTE**
Yii 2 and the relevant applications and extensions are still under heavy
development. We may make significant changes without prior notices. Please do not
development. We may make significant changes without prior notices. Please do not
...
@@ -7,10 +7,10 @@ use them for production. Please consider using [Yii v1.1](https://github.com/yii
...
@@ -7,10 +7,10 @@ use them for production. Please consider using [Yii v1.1](https://github.com/yii
if you have a project to be deployed for production soon.
if you have a project to be deployed for production soon.
Thank you for choosing Yii 2 - the new generation of high-performance PHP framework.
Thank you for using Yii 2 Basic Application Template - an application template
that works out-of-box and can be easily customized to fit for your needs.
The Yii 2 Bootstrap Application is a Web application template that you can easily customize
Yii 2 Basic Application Template is best suitable for small Websites which mainly contain
to fit for your needs. It is particularly suitable for small Websites which mainly contain
a few informational pages.
a few informational pages.
...
@@ -49,11 +49,11 @@ curl -s http://getcomposer.org/installer | php
...
@@ -49,11 +49,11 @@ curl -s http://getcomposer.org/installer | php
You can then install the Bootstrap Application using the following command:
You can then install the Bootstrap Application using the following command:
~~~
~~~
php composer.phar create-project --stability=dev yiisoft/yii2-
bootstrap bootstrap
php composer.phar create-project --stability=dev yiisoft/yii2-
app-basic yii-basic
~~~
~~~
Now you should be able to access the Bootstrap Application using the URL
`http://localhost/
bootstrap
/www/`
,
Now you should be able to access the Bootstrap Application using the URL
`http://localhost/
yii-basic
/www/`
,
assuming
`
bootstrap
`
is directly under the document root of your Web server.
assuming
`
yii-basic
`
is directly under the document root of your Web server.
### Install from an Archive File
### Install from an Archive File
...
...
apps/b
ootstrap
/assets/.gitignore
→
apps/b
asic
/assets/.gitignore
View file @
759c303a
File moved
apps/b
ootstrap
/commands/HelloController.php
→
apps/b
asic
/commands/HelloController.php
View file @
759c303a
File moved
apps/b
ootstrap
/composer.json
→
apps/b
asic
/composer.json
View file @
759c303a
{
{
"name"
:
"yiisoft/yii2-
bootstrap
"
,
"name"
:
"yiisoft/yii2-
app-basic
"
,
"description"
:
"Yii 2 B
ootstrap Application
"
,
"description"
:
"Yii 2 B
asic Application Template
"
,
"keywords"
:
[
"yii"
,
"framework"
,
"b
ootstrap
"
],
"keywords"
:
[
"yii"
,
"framework"
,
"b
asic"
,
"application template
"
],
"homepage"
:
"http://www.yiiframework.com/"
,
"homepage"
:
"http://www.yiiframework.com/"
,
"type"
:
"project"
,
"type"
:
"project"
,
"license"
:
"BSD-3-Clause"
,
"license"
:
"BSD-3-Clause"
,
...
...
apps/b
ootstrap
/config/assets.php
→
apps/b
asic
/config/assets.php
View file @
759c303a
File moved
apps/b
ootstrap
/config/console.php
→
apps/b
asic
/config/console.php
View file @
759c303a
File moved
apps/b
ootstrap
/config/main.php
→
apps/b
asic
/config/main.php
View file @
759c303a
File moved
apps/b
ootstrap
/config/params.php
→
apps/b
asic
/config/params.php
View file @
759c303a
File moved
apps/b
ootstrap
/controllers/SiteController.php
→
apps/b
asic
/controllers/SiteController.php
View file @
759c303a
File moved
apps/b
ootstrap
/models/ContactForm.php
→
apps/b
asic
/models/ContactForm.php
View file @
759c303a
File moved
apps/b
ootstrap
/models/LoginForm.php
→
apps/b
asic
/models/LoginForm.php
View file @
759c303a
File moved
apps/b
ootstrap
/models/User.php
→
apps/b
asic
/models/User.php
View file @
759c303a
File moved
apps/b
ootstrap
/requirements.php
→
apps/b
asic
/requirements.php
View file @
759c303a
File moved
apps/b
ootstrap
/runtime/.gitignore
→
apps/b
asic
/runtime/.gitignore
View file @
759c303a
File moved
apps/b
ootstrap
/vendor/.gitignore
→
apps/b
asic
/vendor/.gitignore
View file @
759c303a
File moved
apps/b
ootstrap
/views/layouts/main.php
→
apps/b
asic
/views/layouts/main.php
View file @
759c303a
File moved
apps/b
ootstrap
/views/site/about.php
→
apps/b
asic
/views/site/about.php
View file @
759c303a
File moved
apps/b
ootstrap
/views/site/contact.php
→
apps/b
asic
/views/site/contact.php
View file @
759c303a
File moved
apps/b
ootstrap
/views/site/index.php
→
apps/b
asic
/views/site/index.php
View file @
759c303a
File moved
apps/b
ootstrap
/views/site/login.php
→
apps/b
asic
/views/site/login.php
View file @
759c303a
File moved
apps/b
ootstrap
/www/assets/.gitignore
→
apps/b
asic
/www/assets/.gitignore
View file @
759c303a
File moved
apps/b
ootstrap
/www/css/site.css
→
apps/b
asic
/www/css/site.css
View file @
759c303a
File moved
apps/b
ootstrap
/www/index.php
→
apps/b
asic
/www/index.php
View file @
759c303a
File moved
apps/b
ootstrap
/yii
→
apps/b
asic
/yii
View file @
759c303a
File moved
apps/b
ootstrap
/yii.bat
→
apps/b
asic
/yii.bat
View file @
759c303a
File moved
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