Browse Source

Renamed apps/bootstrap to apps/basic.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
759c303a65
  1. 2
      README.md
  2. 0
      apps/basic/LICENSE.md
  3. 16
      apps/basic/README.md
  4. 0
      apps/basic/assets/.gitignore
  5. 0
      apps/basic/commands/HelloController.php
  6. 6
      apps/basic/composer.json
  7. 0
      apps/basic/config/assets.php
  8. 0
      apps/basic/config/console.php
  9. 0
      apps/basic/config/main.php
  10. 0
      apps/basic/config/params.php
  11. 0
      apps/basic/controllers/SiteController.php
  12. 0
      apps/basic/models/ContactForm.php
  13. 0
      apps/basic/models/LoginForm.php
  14. 0
      apps/basic/models/User.php
  15. 0
      apps/basic/requirements.php
  16. 0
      apps/basic/runtime/.gitignore
  17. 0
      apps/basic/vendor/.gitignore
  18. 0
      apps/basic/views/layouts/main.php
  19. 0
      apps/basic/views/site/about.php
  20. 0
      apps/basic/views/site/contact.php
  21. 0
      apps/basic/views/site/index.php
  22. 0
      apps/basic/views/site/login.php
  23. 0
      apps/basic/www/assets/.gitignore
  24. 0
      apps/basic/www/css/site.css
  25. 0
      apps/basic/www/index.php
  26. 0
      apps/basic/yii
  27. 0
      apps/basic/yii.bat

2
README.md

@ -16,7 +16,7 @@ DIRECTORY STRUCTURE
-------------------
apps/ ready-to-use Web apps built on Yii 2
bootstrap/ a simple app supporting user login and contact page
basic/ a simple app supporting user login and contact page
build/ internally used build tools
docs/ documentation
yii/ framework source files

0
apps/bootstrap/LICENSE.md → apps/basic/LICENSE.md

16
apps/bootstrap/README.md → apps/basic/README.md

@ -1,5 +1,5 @@
Yii 2 Bootstrap Application
===========================
Yii 2 Basic Application Template
================================
**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
@ -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.
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
to fit for your needs. It is particularly suitable for small Websites which mainly contain
Yii 2 Basic Application Template is best suitable for small Websites which mainly contain
a few informational pages.
@ -49,11 +49,11 @@ curl -s http://getcomposer.org/installer | php
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/`,
assuming `bootstrap` is directly under the document root of your Web server.
Now you should be able to access the Bootstrap Application using the URL `http://localhost/yii-basic/www/`,
assuming `yii-basic` is directly under the document root of your Web server.
### Install from an Archive File

0
apps/bootstrap/assets/.gitignore → apps/basic/assets/.gitignore vendored

0
apps/bootstrap/commands/HelloController.php → apps/basic/commands/HelloController.php

6
apps/bootstrap/composer.json → apps/basic/composer.json

@ -1,7 +1,7 @@
{
"name": "yiisoft/yii2-bootstrap",
"description": "Yii 2 Bootstrap Application",
"keywords": ["yii", "framework", "bootstrap"],
"name": "yiisoft/yii2-app-basic",
"description": "Yii 2 Basic Application Template",
"keywords": ["yii", "framework", "basic", "application template"],
"homepage": "http://www.yiiframework.com/",
"type": "project",
"license": "BSD-3-Clause",

0
apps/bootstrap/config/assets.php → apps/basic/config/assets.php

0
apps/bootstrap/config/console.php → apps/basic/config/console.php

0
apps/bootstrap/config/main.php → apps/basic/config/main.php

0
apps/bootstrap/config/params.php → apps/basic/config/params.php

0
apps/bootstrap/controllers/SiteController.php → apps/basic/controllers/SiteController.php

0
apps/bootstrap/models/ContactForm.php → apps/basic/models/ContactForm.php

0
apps/bootstrap/models/LoginForm.php → apps/basic/models/LoginForm.php

0
apps/bootstrap/models/User.php → apps/basic/models/User.php

0
apps/bootstrap/requirements.php → apps/basic/requirements.php

0
apps/bootstrap/runtime/.gitignore → apps/basic/runtime/.gitignore vendored

0
apps/bootstrap/vendor/.gitignore → apps/basic/vendor/.gitignore vendored

0
apps/bootstrap/views/layouts/main.php → apps/basic/views/layouts/main.php

0
apps/bootstrap/views/site/about.php → apps/basic/views/site/about.php

0
apps/bootstrap/views/site/contact.php → apps/basic/views/site/contact.php

0
apps/bootstrap/views/site/index.php → apps/basic/views/site/index.php

0
apps/bootstrap/views/site/login.php → apps/basic/views/site/login.php

0
apps/bootstrap/www/assets/.gitignore → apps/basic/www/assets/.gitignore vendored

0
apps/bootstrap/www/css/site.css → apps/basic/www/css/site.css

0
apps/bootstrap/www/index.php → apps/basic/www/index.php

0
apps/bootstrap/yii → apps/basic/yii

0
apps/bootstrap/yii.bat → apps/basic/yii.bat

Loading…
Cancel
Save